Skip to content

Commit

Permalink
:p
Browse files Browse the repository at this point in the history
  • Loading branch information
wont-stream committed Sep 23, 2024
1 parent d6b1e3c commit 813a24b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 110 deletions.
103 changes: 0 additions & 103 deletions plugins/eurotilities/components/settings.tsx

This file was deleted.

9 changes: 2 additions & 7 deletions plugins/eurotilities/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
import modules from "./helpers/modules.ts";

const {
plugin: { store },
ui: { showToast },
} = shelter;

export function onLoad() {
for (const module of Object.keys(store)) {
if (store[module]) {
modules[module].start();
}
for (const module of Object.keys(modules)) {
modules[module].start();
}
}

Expand All @@ -23,5 +20,3 @@ export function onUnload() {
duration: Number.POSITIVE_INFINITY,
});
}

export * from "./components/settings.tsx";

0 comments on commit 813a24b

Please sign in to comment.