fix: remove unnecessary variable assignment in OAuth token exchange

This commit is contained in:
JSC
2025-07-27 13:49:13 +02:00
parent 5892d02e9f
commit 833ec359df

View File

@@ -21,7 +21,7 @@ export function AuthCallbackPage() {
}
// Exchange the temporary code for proper auth cookies
const result = await api.auth.exchangeOAuthToken({ code })
await api.auth.exchangeOAuthToken({ code })
// Now get the user info
const user = await api.auth.getMe()