Skip to content

Commit

Permalink
fix message bug
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed Aug 6, 2024
1 parent faecf6b commit 808cff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/v2/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down

0 comments on commit 808cff1

Please sign in to comment.