From 8e7c9e671c4f0fcc383bf1434012647a4f0a9b49 Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Tue, 14 Jun 2022 17:05:13 +0500 Subject: [PATCH] chore: quick fix --- api/src/utils/verifyEnvVariables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/utils/verifyEnvVariables.ts b/api/src/utils/verifyEnvVariables.ts index e596074..c046061 100644 --- a/api/src/utils/verifyEnvVariables.ts +++ b/api/src/utils/verifyEnvVariables.ts @@ -219,7 +219,7 @@ const verifyRUN_TIMES = (): string[] => { const runTimeTypes = Object.values(RunTimeType) runTimes.forEach((runTime) => { - if (!runTimeTypes.includes(runTime.toLowerCase() as RunTimeType)) { + if (!runTimeTypes.includes(runTime as RunTimeType)) { errors.push( `- Invalid '${runTime}' runtime\n - valid options ${runTimeTypes}` )