From f961dc6e7a6fa03565d053b7fceeda186990268c Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 7 Mar 2026 06:41:44 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/utils/volume-backups/utils.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/server/src/utils/volume-backups/utils.ts b/packages/server/src/utils/volume-backups/utils.ts index 20cfbb527..d9e0b3bd5 100644 --- a/packages/server/src/utils/volume-backups/utils.ts +++ b/packages/server/src/utils/volume-backups/utils.ts @@ -141,7 +141,10 @@ export const runVolumeBackup = async (volumeBackupId: string) => { organizationId, }); } catch (notificationError) { - console.error("Failed to send volume backup success notification", notificationError); + console.error( + "Failed to send volume backup success notification", + notificationError, + ); } } catch (error) { const { VOLUME_BACKUPS_PATH } = paths(!!serverId); @@ -175,7 +178,10 @@ export const runVolumeBackup = async (volumeBackupId: string) => { errorMessage: error instanceof Error ? error.message : String(error), }); } catch (notificationError) { - console.error("Failed to send volume backup error notification", notificationError); + console.error( + "Failed to send volume backup error notification", + notificationError, + ); } } };