From ee773533aaba1423f336c2b147df3b3d0cae50fa Mon Sep 17 00:00:00 2001 From: yashmantri Date: Tue, 12 Sep 2023 21:34:15 +0530 Subject: [PATCH] TP-12345 | Fix --- src/utils/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.tsx b/src/utils/index.tsx index 69b9921..45d5a94 100644 --- a/src/utils/index.tsx +++ b/src/utils/index.tsx @@ -454,5 +454,5 @@ export const getEnvName = () => { if (url.includes('dev')) return 'Dev'; else if (url.includes('qa')) return 'QA'; - else return 'Prod'; + return 'Prod'; };