Skip to content

Commit

Permalink
fix(/app/pages/_document.tsx): add lang attribute to html tag (#3851)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVCS authored Aug 5, 2024
1 parent 376d741 commit d98bc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SkipLink } from "components/shared/SkipLink";

export default function Document() {
return (
<Html style={{ "--top-nav-height": "3rem" }}>
<Html lang="en" style={{ "--top-nav-height": "3rem" }}>
<Head />
<body className="selection:bg-light-orange-8 selection:text-light-slate-12">
<SkipLink id="main" />
Expand Down

0 comments on commit d98bc0a

Please sign in to comment.