We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e3c98e commit cfc260dCopy full SHA for cfc260d
src/routes/guides/upgrade/index.tsx
@@ -85,7 +85,9 @@ export default function Upgrade() {
85
)
86
.then((res) => res.json())
87
.then((plugins) => {
88
- setPlugins(plugins);
+ setPlugins(
89
+ plugins.filter((plugin: PluginItem) => plugin.id !== "komga")
90
+ );
91
setLoading(false);
92
});
93
}, []);
0 commit comments