Django simpleJWT error "detail": "No active account found with the given credentials"

Advertisements i’m trying to log into an account that isn’t superuser and getting an error from rest_framework "detail": "No active account found with the given credentials" using a custom user model models.py : lass UserAccountManager(BaseUserManager): def create_user(self, email, first_name, last_name, password=None): if not email: raise ValueError(‘Users must have an email’) email = self.normalize_email(email) user =… Read More Django simpleJWT error "detail": "No active account found with the given credentials"