Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
fforres committed Jul 10, 2024
1 parent e23cec9 commit 9fdf45d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/utils/supabase/AuthProvider/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ export const AuthProvider = ({ children }: { children: React.ReactNode }) => {
setTokenRef,
refreshSession,
}) satisfies AuthContextType,
[user, isReady, setTokenRef, refreshSession],
// eslint-disable-next-line react-hooks/exhaustive-deps
[user, isReady, setTokenRef, refreshSession, supabaseSession],
);

return <AuthContext.Provider value={value}>{children}</AuthContext.Provider>;
Expand Down

0 comments on commit 9fdf45d

Please sign in to comment.