We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9050511 commit c4b9667Copy full SHA for c4b9667
1 file changed
frontend/src/context/AuthContext.js
@@ -93,7 +93,7 @@ export const AuthProvider = ({ children }) => {
93
const data = await response.json();
94
95
// Set Supabase session directly
96
- const { data: sessionData, error: sessionError } = await supabase.auth.setSession({
+ const { data: _sessionData, error: sessionError } = await supabase.auth.setSession({
97
access_token: data.access_token,
98
refresh_token: data.refresh_token || null, // Supabase might not always return refresh_token on signInWithPassword
99
});
0 commit comments