Skip to content

Commit cfc260d

Browse files
committed
fix: exclude komga plugin
1 parent 6e3c98e commit cfc260d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/routes/guides/upgrade/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ export default function Upgrade() {
8585
)
8686
.then((res) => res.json())
8787
.then((plugins) => {
88-
setPlugins(plugins);
88+
setPlugins(
89+
plugins.filter((plugin: PluginItem) => plugin.id !== "komga")
90+
);
8991
setLoading(false);
9092
});
9193
}, []);

0 commit comments

Comments
 (0)