@aakash58/chatbot 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -867,7 +867,7 @@ class PersonalizationService {
|
|
|
867
867
|
effect(() => {
|
|
868
868
|
const status = this.authStatus();
|
|
869
869
|
this._settings.set(this.loadSettings());
|
|
870
|
-
});
|
|
870
|
+
}, { allowSignalWrites: true });
|
|
871
871
|
// Automatically persist changes when settings signal updates
|
|
872
872
|
effect(() => {
|
|
873
873
|
const currentSettings = this._settings();
|
|
@@ -949,8 +949,8 @@ class PersonalizationService {
|
|
|
949
949
|
...DEFAULT_SETTINGS,
|
|
950
950
|
appearance: {
|
|
951
951
|
...DEFAULT_SETTINGS.appearance,
|
|
952
|
-
...this._developerDefaults()
|
|
953
|
-
}
|
|
952
|
+
...this._developerDefaults(),
|
|
953
|
+
},
|
|
954
954
|
};
|
|
955
955
|
}
|
|
956
956
|
saveSettings(settings) {
|