auth.user record's is_sso_user = false after signing in with SSO

I am setting up a second production instance of my app. I'm using Supabase SSO with Azure. Whenever I signed in using my other instance, the new user record that gets added into the auth.users table would always have is_sso_user set to
true
. However, in this new instance, even though my login process is exactly the same (using SAML with Azure), when the new record gets created in auth.users, is_sso_user is being set to false. This is causing problems because I need this value to be true. I'm signing in with SSO so I have no idea why Supabase is setting this to false, especially when it worked fine in my other instance. Any tips?
Was this page helpful?