From f27b04890bbeb7c7ed75037180e0cc16a463b6be Mon Sep 17 00:00:00 2001 From: Arman <37100541+CarboxyDev@users.noreply.github.com> Date: Sun, 5 Mar 2023 03:04:08 +0530 Subject: [PATCH] Fix typo in ratelimit popup Fixed a typo in the alert which pops up when the user exceeds their requests allowance. --- pages/api/generate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/generate.ts b/pages/api/generate.ts index dc51b67a..613848ef 100644 --- a/pages/api/generate.ts +++ b/pages/api/generate.ts @@ -40,7 +40,7 @@ export default async function handler( if (!result.success) { res .status(429) - .json("Too many uploads in 1 day. Please try again in a 24 hours."); + .json("Too many uploads in 1 day. Please try again in 24 hours."); return; } }