From 5a7eb2ab1d93d750ceb19ae696ed9fa5be49052b Mon Sep 17 00:00:00 2001 From: PizzaTheGreat <82726593+everypizza1@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:21:08 -0500 Subject: [PATCH] chore: typo (everypizza1) (#4556) --- backend/src/dal/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/dal/user.ts b/backend/src/dal/user.ts index 3e33b0f43..df15a9565 100644 --- a/backend/src/dal/user.ts +++ b/backend/src/dal/user.ts @@ -283,7 +283,7 @@ export async function addTag( const user = await getUser(uid, "add tag"); if ((user?.tags?.length ?? 0) >= 15) { - throw new MonkeyError(400, "You can only have up to 10 tags"); + throw new MonkeyError(400, "You can only have up to 15 tags"); } const _id = new ObjectId();