🚨 fix: resolve all linting errors

This commit is contained in:
2026-02-07 14:14:00 +07:00
parent 0a9f011f08
commit 7e8d26dc53
3 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import AuthSessionProvider from "./AuthSession.client";
const AuthSessionProviderWrapper = async ({
children,
}: Readonly<{ children: React.ReactNode }>) => {
let session: UserSession | null = await validateAndDecodeJWT();
const session: UserSession | null = await validateAndDecodeJWT();
return (
<AuthSessionProvider session={session}>{children}</AuthSessionProvider>