fix linter (#4466)

This commit is contained in:
Dotan Simha 2024-04-09 11:01:26 +03:00 committed by GitHub
parent 2dc42b6745
commit be2efbe7ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,7 +47,7 @@ export function Page(props: { children: ReactNode }) {
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
</Head>
<div className="font-display flex h-full flex-col">{props.children}</div>
<div className="flex h-full flex-col">{props.children}</div>
{mounted && <CookiesConsent />}
</>
);