From 28cb942e6ce63e2e511394b7ea0cf8191206db26 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 30 Oct 2024 10:53:02 +0530 Subject: [PATCH] Fix formatting lint issue --- web/apps/photos/src/utils/file/index.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/apps/photos/src/utils/file/index.ts b/web/apps/photos/src/utils/file/index.ts index 79588f5170..01680217db 100644 --- a/web/apps/photos/src/utils/file/index.ts +++ b/web/apps/photos/src/utils/file/index.ts @@ -431,11 +431,7 @@ async function downloadFileDesktop( file.metadata.title, fs.exists, ); - await writeStream( - electron, - `${downloadDir}/${fileExportName}`, - stream, - ); + await writeStream(electron, `${downloadDir}/${fileExportName}`, stream); } }