Skip to content

Commit

Permalink
fix(a11y): fix html.lang attribute fix #753
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Jan 24, 2025
1 parent 2f3bdc7 commit bbcf5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function RootLayout(props: PropsWithChildren<RootLayoutProps>) {
}

return (
<html lang="fr" {...getHtmlAttributes({ defaultColorScheme })}>
<html {...getHtmlAttributes({ defaultColorScheme, lang: "fr" })}>
<MainStructure {...props} />
</html>
);
Expand Down

0 comments on commit bbcf5ce

Please sign in to comment.