Database error finding user

I have upgraded supabase_flutter to 1.0.1 and I'm suddenly getting 'Database error finding user' when trying to signUp a user. Database is emtpy. Error happens only when calling signUp for the first time, each consequent call will succeed until I get another error 'Access token refresh retry limit exceded'

 for (final testUser in testUsers) {
    final res = await Supabase.instance.client.auth.signUp(
      email: testUser.email,
      password: testUser.password,
    );
  }


This code was working with previous version of supabase_flutter 0.3.3. Any ideas?
Was this page helpful?