From 67f0124f4736deb90d7c1a3ae0a3f0d0ca21d807 Mon Sep 17 00:00:00 2001 From: Andy Balaam Date: Wed, 1 Apr 2026 13:58:05 +0100 Subject: [PATCH] Reinstate comment about not showing toasts while secret storage is being accessed --- apps/web/src/device-listener/DeviceListenerCurrentDevice.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/device-listener/DeviceListenerCurrentDevice.ts b/apps/web/src/device-listener/DeviceListenerCurrentDevice.ts index 574732258f..d9808ec333 100644 --- a/apps/web/src/device-listener/DeviceListenerCurrentDevice.ts +++ b/apps/web/src/device-listener/DeviceListenerCurrentDevice.ts @@ -269,6 +269,8 @@ export class DeviceListenerCurrentDevice { } else if (!isSecretStorageBeingAccessed()) { showSetupEncryptionToast(newState); } else { + // If we're in the middle of a secret storage operation, we're likely + // modifying the state involved here, so don't add new toasts to setup. logSpan.info("Device is not yet ready, but secret storage is being accessed, so not showing toast."); } }