chore: Update translations

This commit is contained in:
2023-09-05 14:18:25 +00:00
parent 5ef3fb0337
commit c72cdcc9a9
58 changed files with 112 additions and 114 deletions

View File

@ -89,7 +89,7 @@ export default function Layout() {
useEffect(() => {
const osTheme = window.matchMedia("(prefers-color-scheme: light)");
setTheme(
preferences.theme === "system" && osTheme.matches ? "light" : preferences.theme === "light" ? "light" : "dark",
preferences.theme === "system" && osTheme.matches ? "light" : preferences.theme === "light" ? "light" : "dark"
);
osTheme.onchange = e => {
@ -174,7 +174,7 @@ const AccountHeader = () => {
const hasNotifications = useMemo(
() => latestNotification > readNotifications,
[latestNotification, readNotifications],
[latestNotification, readNotifications]
);
const unreadDms = useMemo(() => (publicKey ? 0 : 0), [publicKey]);