From bf6c6a522a7c180a286457a95b9d2b5906edb6bd Mon Sep 17 00:00:00 2001 From: Sainan Date: Fri, 3 Jan 2025 02:34:24 +0100 Subject: [PATCH] fix typo --- src/services/guildService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/guildService.ts b/src/services/guildService.ts index 250408b9..dda01ef8 100644 --- a/src/services/guildService.ts +++ b/src/services/guildService.ts @@ -17,7 +17,7 @@ export const getGuildForRequestEx = async (req: Request, inventory: IInventoryDa } const guild = await Guild.findOne({ _id: guildId }); if (!guild) { - throw new Error("Account thinks it is a in guild that doesn't exist"); + throw new Error("Account thinks it is in a guild that doesn't exist"); } return guild; };