For some reason when I try and sign up, it does add a new user but for some reason when I run checkUser it just doesn't work?
The error I get is:
Sign-up successful. Now signing in...
No session: User (role: guests) missing scope (account)
are you using the same AppwriteAuth instance across all your view models?
I see the same auth instance used in ContentView, AuthViewModel, and SignInView, but what about SignUpViewModel?
For the SignUpView/SignUpViewModel, I use NavigationLink("Sign up", destination: SignUpView(auth: auth)) so it's being passed down from the SignInView.
You said the user is created. Do you see the session created too?
Also, what version of the apple sdk do you have?
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Appwrite Storage error 503s for automate...
I'm facing error 503s from Appwrite after about 5-6 seconds of making AI requests from my tool with images and files above 20MB (=> not inline base64 used, but ...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...