Is it possible to retrieve the signed in User synchronously with the supabase-swift SDK?
I'm using the supabase-swift SDK and trying to synchronously determine user status (signed in vs expired token) in the Scene Delegate to show my Main or Auth Storyboard.
TL;DR: Looking for a synchronous way to determine user status (signed in vs expired token).
The SDK has client.auth.session which is async, but I am looking for a sync version of this. Is there a way to retrieve this synchronously with the SDK or do I need to manage this myself?
Thank you.