summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/components/settings/pages/general/BranchSelect.tsx2
-rw-r--r--frontend/src/store.tsx1
-rw-r--r--frontend/src/tabs-hook.tsx4
-rw-r--r--frontend/src/updater.ts2
4 files changed, 3 insertions, 6 deletions
diff --git a/frontend/src/components/settings/pages/general/BranchSelect.tsx b/frontend/src/components/settings/pages/general/BranchSelect.tsx
index 5e43a13d..27db6229 100644
--- a/frontend/src/components/settings/pages/general/BranchSelect.tsx
+++ b/frontend/src/components/settings/pages/general/BranchSelect.tsx
@@ -10,7 +10,7 @@ const logger = new Logger('BranchSelect');
enum UpdateBranch {
Stable,
Prerelease,
- Testing,
+ // Testing,
}
const BranchSelect: FunctionComponent<{}> = () => {
diff --git a/frontend/src/store.tsx b/frontend/src/store.tsx
index 3ef3e361..bc9f281c 100644
--- a/frontend/src/store.tsx
+++ b/frontend/src/store.tsx
@@ -1,5 +1,4 @@
import { Plugin } from './plugin';
-import { getSetting, setSetting } from './utils/settings';
export enum Store {
Default,
diff --git a/frontend/src/tabs-hook.tsx b/frontend/src/tabs-hook.tsx
index c7790f7e..a518c4c9 100644
--- a/frontend/src/tabs-hook.tsx
+++ b/frontend/src/tabs-hook.tsx
@@ -1,10 +1,8 @@
// TabsHook for versions after the Desktop merge
-import { Patch, QuickAccessTab, afterPatch, findInReactTree, findModule, sleep } from 'decky-frontend-lib';
-import { memo } from 'react';
+import { Patch, QuickAccessTab, afterPatch, findInReactTree, sleep } from 'decky-frontend-lib';
import { QuickAccessVisibleStateProvider } from './components/QuickAccessVisibleState';
import Logger from './logger';
-import { findSP } from './utils/windows';
declare global {
interface Window {
diff --git a/frontend/src/updater.ts b/frontend/src/updater.ts
index 16955104..339b2b72 100644
--- a/frontend/src/updater.ts
+++ b/frontend/src/updater.ts
@@ -1,7 +1,7 @@
export enum Branches {
Release,
Prerelease,
- Testing,
+ // Testing,
}
export interface DeckyUpdater {