From 2f3902a11945359e1b3f2af8b6e70442c7382a83 Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Tue, 26 Mar 2024 12:36:37 +0000 Subject: [PATCH] TMP format change --- components/utils/index.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/components/utils/index.js b/components/utils/index.js index ef279b0f..ff458e05 100644 --- a/components/utils/index.js +++ b/components/utils/index.js @@ -368,12 +368,7 @@ export const getTempCaseRef = () => { const randomGUID = uuidv4(); - return ( - "TMP-" + - randomString(5).toUpperCase() + - "-" + - randomString(6).toUpperCase() - ); + return "TMP-" + randomString(5).toUpperCase(); }; export const getThumbnailIconByExtension = (blobName) => {