Skip to content

Commit

Permalink
Merge branch 'feature/AB#16122' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefwint committed Feb 13, 2024
2 parents 5258a07 + d2d5440 commit 0cd2e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/context/AuthContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ function AuthProvider({ children }: { children: ReactNode }) {
} = useLocalStorageValue<string>(
import.meta.env.VITE_KEY_API_ACCESS_TOKEN || '',
{
parse: (data: string) => data,
stringify: (data: unknown) => data,
parse: (data: string | null) => data,
stringify: (data: string) => data,
}
)
const {
Expand Down

0 comments on commit 0cd2e16

Please sign in to comment.