From 5268a1a561e4dc1dc8ab41b5c2c9ca956573c2f2 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 12 Jul 2025 14:47:45 +0000 Subject: [PATCH] Set initial prompt symbols limit renewal to 30 days from signup Co-authored-by: alexey.suprun.mail --- apps/platform/app/api/auth/signup/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/platform/app/api/auth/signup/route.ts b/apps/platform/app/api/auth/signup/route.ts index 25149c1..81376b9 100644 --- a/apps/platform/app/api/auth/signup/route.ts +++ b/apps/platform/app/api/auth/signup/route.ts @@ -16,7 +16,7 @@ export const POST = async (req: Request) => { data: { email, password: hashed, - promptSymbolsLimitRenewal: new Date(), + promptSymbolsLimitRenewal: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000), // 30 days from now promptSymbolsLimit: 2500, }, });