From d7c7896e70c7a3467a8e2ff371fea3eff0c0afb7 Mon Sep 17 00:00:00 2001 From: KevinDog24 <56615743+KevinDog24@users.noreply.github.com> Date: Sun, 25 Aug 2024 12:35:58 -0700 Subject: [PATCH] Update app.ts Same, grammatical error at closing a string, corrected now. --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 04c1f99..8c36532 100644 --- a/src/app.ts +++ b/src/app.ts @@ -44,7 +44,7 @@ const handleQueue = async (userId) => { try { await processUserMessage(ctx, { flowDynamic, state, provider }); } catch (error) { - console.error(`Error processing message for user ${userId}`:, error); + console.error(`Error processing message for user ${userId}:`, error); } finally { userLocks.set(userId, false); // Release the lock }