Skip to content

Commit b9cbed5

Browse files
committed
♻️ Use consistent method syntax (#1726)
1 parent 7104195 commit b9cbed5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/stores/replenishment_workbook.svelte.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ class ReplenishmentWorkBooksStore {
2727
return this.isShown;
2828
}
2929

30-
toggleView = () => {
30+
toggleView() {
3131
this.isShown = !this.isShown;
3232

3333
if (browser) {
3434
localStorage.setItem(IS_SHOWN_REPLENISHMENT_WORKBOOKS, JSON.stringify(this.isShown));
3535
}
36-
};
36+
}
3737

3838
reset() {
3939
this.isShown = false;

0 commit comments

Comments
 (0)