We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cfd43b commit 2bd7dc0Copy full SHA for 2bd7dc0
packages/remote-config/src/storage/storage.ts
@@ -203,6 +203,7 @@ export class Storage {
203
...storedSignals,
204
...customSignals
205
};
206
+ // Filter out key-value assignments with null values since they are signals being unset
207
const signalsToUpdate = Object.fromEntries(Object.entries(combinedSignals).filter(([_, v]) => v !== null));
208
if (signalsToUpdate) {
209
const setSignalsRequest = objectStore.put({compositeKey, signalsToUpdate});
0 commit comments