class Token(BaseModel):
access_token: SecretStr
refresh_token: SecretStr
token_type: str
Caused errors when transmitting a payload to the frontend. The frontend subsequently read the input as access_token: '*****' making users unable to leverage the login functionality. This fix returns the it back to using str.
Bugfix
Caused errors when transmitting a payload to the frontend. The frontend subsequently read the input as
access_token: '*****'
making users unable to leverage the login functionality. This fix returns the it back to using str.