From f1779131e8385ab392323b84b6e14d9948b0a9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 13 Mar 2026 17:04:29 +0400 Subject: [PATCH] Also load/init lists in anonymous mode --- app/services/storage.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/services/storage.js b/app/services/storage.js index 227fad0..5bf7fc5 100644 --- a/app/services/storage.js +++ b/app/services/storage.js @@ -50,6 +50,10 @@ export default class StorageService extends Service { this.loadLists(); }); + this.rs.on('not-connected', () => { + this.loadLists(); + }); + this.rs.on('disconnected', () => { this.connected = false; this.userAddress = null;