Fix check if valid value

This commit is contained in:
WardPearce
2024-04-11 13:54:00 +12:00
parent f7fd44264d
commit c47e83147a
+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());
}
});