Skip to content

Commit

Permalink
fix: module state desync in search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidsquid1 authored Jan 3, 2025
1 parent 3f49d5b commit 5c4b1de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/clickgui/Search.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
});
listen("toggleModule", (e: ModuleToggleEvent) => {
const mod = filteredModules.find((m) => m.name === e.moduleName);
const mod = modules.find((m) => m.name === e.moduleName);
if (!mod) {
return;
}
Expand Down

0 comments on commit 5c4b1de

Please sign in to comment.