You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The return type Promise<User | void> of signinCallback is not properly typed and should be Promise<User | undefined>.
Functions annotated with a void return type are created with the intention that their return value will not be used, so using the type User | void for the return value seems to be against that intention.
The return type
Promise<User | void>
ofsigninCallback
is not properly typed and should bePromise<User | undefined>
.Functions annotated with a
void
return type are created with the intention that their return value will not be used, so using the typeUser | void
for the return value seems to be against that intention.Related URLs
The text was updated successfully, but these errors were encountered: