feat: increase the per user limit of generations to 1000

This commit is contained in:
James Murdza
2024-09-06 14:19:14 -07:00
parent 31d74ddc2d
commit 0c6b2b0dfb
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ export default function GenerateInput({
}: {
regenerate?: boolean
}) => {
if (user.generations >= 10) {
if (user.generations >= 1000) {
toast.error("You reached the maximum # of generations.")
return
}