From db6694740d943cb81e1dfebfb1f8ec2929842338 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sat, 21 Feb 2026 18:17:24 -0600 Subject: [PATCH] Show status when doing an overwrite sync --- src/admin/AdminPhotoMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/AdminPhotoMenu.tsx b/src/admin/AdminPhotoMenu.tsx index 3d57b160..865d8ff2 100644 --- a/src/admin/AdminPhotoMenu.tsx +++ b/src/admin/AdminPhotoMenu.tsx @@ -160,7 +160,7 @@ export default function AdminPhotoMenu({ color: 'yellow', action: () => { if(window.confirm(appText.admin.syncOverwriteConfirm)) { - syncPhotoAction(photo.id, { syncMode: 'only-missing' }) + return syncPhotoAction(photo.id, { syncMode: 'only-missing' }) .then(() => revalidatePhoto?.(photo.id)); } },