Skip to content

Commit 6fded37

Browse files
committed
Update layout.tsx
Signed-off-by: Claudio Wunder <[email protected]>
1 parent d5b1aa1 commit 6fded37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/site/app/[locale]/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ import '#site/styles/index.css';
1414

1515
const fontClasses = classNames(IBM_PLEX_MONO.variable, OPEN_SANS.variable);
1616

17-
type RotLayoutProps = PropsWithChildren<{
17+
type RootLayoutProps = PropsWithChildren<{
1818
params: Promise<{ locale: string }>;
1919
}>;
2020

21-
const RootLayout: FC<RotLayoutProps> = async ({ children, params }) => {
21+
const RootLayout: FC<RootLayoutProps> = async ({ children, params }) => {
2222
const { locale } = await params;
2323

2424
const { langDir, hrefLang } = availableLocalesMap[locale] || defaultLocale;

0 commit comments

Comments
 (0)