Only if null or undefined

This commit is contained in:
WardPearce
2024-10-09 09:48:11 +13:00
parent 78d03566af
commit 68a9589867
+1 -1
View File
@@ -231,7 +231,7 @@ export function bookmarkletSaveToUrl(): string {
persistedStores.forEach((store) => {
let value = get(store.store);
if (value) {
if (value !== null && value !== undefined) {
url.searchParams.set(store.name, value.toString());
}
});