From 76750e864db839693b1890c436df07e9cabd696b Mon Sep 17 00:00:00 2001 From: Yury Date: Tue, 29 Oct 2024 11:30:05 +0300 Subject: [PATCH] chore(lint): fixed lint issue --- api/src/utils/upload.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/src/utils/upload.ts b/api/src/utils/upload.ts index f85cf57..d4a4119 100644 --- a/api/src/utils/upload.ts +++ b/api/src/utils/upload.ts @@ -51,8 +51,9 @@ 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