Skip to content

Commit

Permalink
Third time's the charm
Browse files Browse the repository at this point in the history
  • Loading branch information
bubner committed Aug 20, 2023
1 parent e526044 commit eed4d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/BBQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function BBQ() {
</div>
<hr />
<div className="buttonarea">
<button onClick={filterChange}>Change filter preference (currently {!localStorage.getItem("filter") ? "on" : "off"})</button>
<button onClick={filterChange}>Change filter preference (currently {localStorage.getItem("filter") === "false" ? "off" : "on"})</button>
</div>
<hr />
</div>
Expand Down

0 comments on commit eed4d8c

Please sign in to comment.