Hey folks, it seems like `setAuth` doesn't actuall...
# help
n
Hey folks, it seems like
setAuth
doesn't actually return a user, given a valid access token? https://supabase.com/docs/reference/javascript/auth-setauth
s
Yes it doesn't actually return anything, it just sets the current user when the next api request is made. So you can call
supabase.auth.user()
after
setAuth
to get the user
n
ah ok, thanks