summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/components/DeckyState.tsx2
-rw-r--r--frontend/src/components/modals/PluginDisablelModal.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/DeckyState.tsx b/frontend/src/components/DeckyState.tsx
index b2f7ac33..3d6e9dc4 100644
--- a/frontend/src/components/DeckyState.tsx
+++ b/frontend/src/components/DeckyState.tsx
@@ -47,7 +47,7 @@ export class DeckyState {
return {
plugins: this._plugins,
disabled: this._disabledPlugins,
- installedPlugins: this._disabledPlugins,
+ installedPlugins: this._installedPlugins,
pluginOrder: this._pluginOrder,
frozenPlugins: this._frozenPlugins,
hiddenPlugins: this._hiddenPlugins,
diff --git a/frontend/src/components/modals/PluginDisablelModal.tsx b/frontend/src/components/modals/PluginDisablelModal.tsx
index 89cda293..c455f9fa 100644
--- a/frontend/src/components/modals/PluginDisablelModal.tsx
+++ b/frontend/src/components/modals/PluginDisablelModal.tsx
@@ -1,7 +1,7 @@
import { ConfirmModal, Spinner } from '@decky/ui';
import { FC, useState } from 'react';
-import { disablePlugin, uninstallPlugin } from '../../plugin';
+import { disablePlugin } from '../../plugin';
interface PluginUninstallModalProps {
name: string;