From 808cff19783267506f6c34449c1d6ca97aeb5680 Mon Sep 17 00:00:00 2001 From: branberry Date: Tue, 6 Aug 2024 15:55:11 -0500 Subject: [PATCH] fix message bug --- api/controllers/v2/jobs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/controllers/v2/jobs.ts b/api/controllers/v2/jobs.ts index b2dd335fa..eebb51a00 100644 --- a/api/controllers/v2/jobs.ts +++ b/api/controllers/v2/jobs.ts @@ -118,7 +118,7 @@ function prepProgressMessage( const msg = `Your Job (<${jobUrl}${jobId}|${jobTitle}>) `; switch (status) { case 'inQueue': - return msg + `has successfully been added to the ' + env + ' queue. ${deprecationWarning}`; + return msg + `has successfully been added to the ${env} queue. ${deprecationWarning}`; case 'inProgress': return msg + 'is now being processed.'; case 'completed':