run npm run lint:backend

This commit is contained in:
Danny Liu 2024-04-04 01:10:51 -07:00
parent 8d1db9a1c0
commit 3b06096c52
3 changed files with 17 additions and 3 deletions

View file

@ -146,7 +146,11 @@ async def signup(request: Request, form_data: SignupForm):
)
hashed = get_password_hash(form_data.password)
user = Auths.insert_new_auth(
form_data.email.lower(), hashed, form_data.name, form_data.profile_image_url, role
form_data.email.lower(),
hashed,
form_data.name,
form_data.profile_image_url,
role,
)
if user: