Merge pull request #93 from WardPearce/fix/bookmarklet

Fix check if valid value
This commit is contained in:
Ward
2024-04-11 13:55:23 +12:00
committed by GitHub
+1 -1
View File
@@ -124,7 +124,7 @@ export function bookmarkletSaveToUrl(): string {
persistedStores.forEach(store => {
let value = get(store.store);
if (value) {
if (value !== null) {
url.searchParams.set(store.name, value.toString());
}
});