summaryrefslogtreecommitdiff
path: root/frontend/src/components/settings/index.tsx
diff options
context:
space:
mode:
authorbotato <63275405+botatooo@users.noreply.github.com>2022-07-01 23:43:17 +0000
committerGitHub <noreply@github.com>2022-07-01 16:43:17 -0700
commit4daf028e7acb49932e274ad5c32cd98045c7474a (patch)
treefa75d035d90d30d3cb7e2ecd17cb3f8e8f67b168 /frontend/src/components/settings/index.tsx
parent934a50f683f579695292f88437d91d4fce2f4edc (diff)
downloaddecky-loader-4daf028e7acb49932e274ad5c32cd98045c7474a.tar.gz
decky-loader-4daf028e7acb49932e274ad5c32cd98045c7474a.zip
Uninstall functionality (#97)
* feat: POC uninstallation feature * Fixes, placeholder * bugfix: wrong function call * add oncancel and change function called * clean up plugin uninstall code * bugfix, uninstall in store * Limit scope of feature branch * feat: PluginLoader.unloadPlugin * problematic logs
Diffstat (limited to 'frontend/src/components/settings/index.tsx')
-rw-r--r--frontend/src/components/settings/index.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/src/components/settings/index.tsx b/frontend/src/components/settings/index.tsx
index d4799fa9..f9c84c7b 100644
--- a/frontend/src/components/settings/index.tsx
+++ b/frontend/src/components/settings/index.tsx
@@ -1,6 +1,7 @@
import { SidebarNavigation } from 'decky-frontend-lib';
import GeneralSettings from './pages/GeneralSettings';
+import PluginList from './pages/PluginList';
export default function SettingsPage() {
return (
@@ -13,6 +14,11 @@ export default function SettingsPage() {
content: <GeneralSettings />,
route: '/decky/settings/general',
},
+ {
+ title: 'Plugins',
+ content: <PluginList />,
+ route: '/decky/settings/plugins',
+ },
]}
/>
);