How does the auth work on react native?
I know after a users sign's in, there is a jwt issued and it is automatically stored on the phone. For a quick test, I deleted the user in the supabase UI after the user has signed in. When the user now quits the app and reopens it, then the user is still able to login (I know RLS would prevent any actions on the DB but still).
Probably because the issued jwt is not expired. How does the auth logic actually work is it documented anywhere? What does it do when the jwt expires, does the user has to login again or does it use a refresh token automatically in the background?
Probably because the issued jwt is not expired. How does the auth logic actually work is it documented anywhere? What does it do when the jwt expires, does the user has to login again or does it use a refresh token automatically in the background?