From b862166862d3c24aa105349b20acf2d28ea3b163 Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Thu, 15 Jan 2026 15:40:56 +0100 Subject: [PATCH] Fix format --- src/Common/dataAccess/deleteDocument.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Common/dataAccess/deleteDocument.ts b/src/Common/dataAccess/deleteDocument.ts index fd2f9e725..b8a4a0430 100644 --- a/src/Common/dataAccess/deleteDocument.ts +++ b/src/Common/dataAccess/deleteDocument.ts @@ -84,11 +84,7 @@ export const deleteDocuments = async ( const flatAllResult = Array.prototype.concat.apply([], allResult); return flatAllResult; } catch (error) { - handleError( - error, - "DeleteDocuments", - `Error while deleting ${totalCount} ${getEntityName(totalCount > 1)}`, - ); + handleError(error, "DeleteDocuments", `Error while deleting ${totalCount} ${getEntityName(totalCount > 1)}`); throw error; } finally { clearMessage();