From 068edfd6a59066c0e6fdcbfdce14360039c6d6e8 Mon Sep 17 00:00:00 2001 From: Allan Date: Tue, 7 Nov 2023 20:39:05 +0000 Subject: [PATCH] chore: lint fix --- api/src/utils/upload.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/src/utils/upload.ts b/api/src/utils/upload.ts index d4a41196..f85cf57a 100644 --- a/api/src/utils/upload.ts +++ b/api/src/utils/upload.ts @@ -51,9 +51,8 @@ export const generateFileUploadSasCode = async ( let fileCount = 0 const uploadedFiles: UploadedFiles[] = [] - const sasSessionFolderList: string[] = await listFilesInFolder( - sasSessionFolder - ) + const sasSessionFolderList: string[] = + await listFilesInFolder(sasSessionFolder) sasSessionFolderList.forEach((fileName) => { let fileCountString = fileCount < 100 ? '0' + fileCount : fileCount fileCountString = fileCount < 10 ? '00' + fileCount : fileCount