From 2f8d608e6be9546ef967df03bd5a3dc091a6a576 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Mon, 12 Aug 2024 20:02:35 +0400 Subject: [PATCH] Fixed missing returning statement when updating Writeable --- src/stores/debug.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/debug.js b/src/stores/debug.js index bfa2e52..02c17fe 100644 --- a/src/stores/debug.js +++ b/src/stores/debug.js @@ -15,5 +15,7 @@ chrome.storage.local.onChanged.addListener(changes => { for (let updatedStorageName of Object.keys(changes)) { storages[updatedStorageName] = changes[updatedStorageName].newValue; } + + return storages; }) });