We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b92a3b8 commit 6b414e1Copy full SHA for 6b414e1
web-app/src/components/layouts/RootLayout.tsx
@@ -5,11 +5,11 @@ import { TitleBar } from '../TitleBar'
5
import { useTranslation } from '@/i18n'
6
7
export function RootLayout() {
8
- const { t } = useTranslation()
+ const { t } = useTranslation('common')
9
return (
10
<AppProviders>
11
<main className="h-screen flex flex-col relative glass-background select-none bg-background">
12
- {IS_LINUX && <TitleBar title={t('common:appTitle')} />}
+ {IS_LINUX && <TitleBar title={t('appTitle')} />}
13
14
{IS_MACOS && (
15
<div className="absolute w-full h-10 z-10" data-tauri-drag-region />
0 commit comments