Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
jcm427 committed May 31, 2023
1 parent c166e90 commit 6482698
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@
const toggleWishList = () => {
showingOnlyWishList = !showingOnlyWishList;
const newQueryParam = showingOnlyWishList ? 'true' : 'false';
goto(`?showWishList=${newQueryParam}`);
goto(`?showWishList=${showingOnlyWishList}`);
filterThings();
}
</script>
Expand Down

0 comments on commit 6482698

Please sign in to comment.