From eb37a3dae36d2177e7230768de6e7b4123665de1 Mon Sep 17 00:00:00 2001 From: Mentlegen <9807008+gentlementlegen@users.noreply.github.com> Date: Sun, 1 Sep 2024 16:10:36 +0900 Subject: [PATCH] Update src/handlers/shared/start.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: アレクサンダー.eth <4975670+0x4007@users.noreply.github.com> --- src/handlers/shared/start.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/shared/start.ts b/src/handlers/shared/start.ts index 1283307..719a982 100644 --- a/src/handlers/shared/start.ts +++ b/src/handlers/shared/start.ts @@ -22,7 +22,7 @@ export async function start(context: Context, issue: Context["payload"]["issue"] const hasBeenPreviouslyUnassigned = await hasUserBeenUnassigned(context); if (hasBeenPreviouslyUnassigned) { - const log = logger.error("You were previously unassigned from this task. You cannot reassign yourself.", { sender }); + const log = logger.error("You were previously unassigned from this task. You can not reassign yourself.", { sender }); await addCommentToIssue(context, log?.logMessage.diff as string); throw new Error("User was previously unassigned from this task"); }