fix(auth): validation toast and rate limit adjustment

This commit is contained in:
qzl
2026-02-26 12:07:40 +08:00
parent 56bee56415
commit 11666e6492
2 changed files with 13 additions and 4 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ async def signup_resend(
await enforce_rate_limit(
scope="signup_resend",
identifier=payload.email,
limit=3,
limit=5,
window_seconds=60,
)
return await service.signup_resend(payload)