From b98bdca24f7ef735691ea7e3780ac0e01c8cf3cb Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Tue, 14 Jul 2026 18:04:46 +0200 Subject: [PATCH] Prevent vault syncing pending flash in mobile app --- apps/mobile-app/hooks/useVaultSync.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/mobile-app/hooks/useVaultSync.ts b/apps/mobile-app/hooks/useVaultSync.ts index 5c9913f66..7e65cc81f 100644 --- a/apps/mobile-app/hooks/useVaultSync.ts +++ b/apps/mobile-app/hooks/useVaultSync.ts @@ -249,6 +249,7 @@ export const useVaultSync = (): { return false; } finally { syncInProgressRef.current = false; + await dbContext.refreshSyncState(); dbContext.setIsSyncing(false); dbContext.setIsUploading(false); }