diff options
| author | AAGaming <aagaming@riseup.net> | 2023-12-30 18:06:07 -0500 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2023-12-30 18:06:07 -0500 |
| commit | 70104065e2145e9a04fef4ae28ec9875a6114e2d (patch) | |
| tree | 4c540a9d48d98e12e2876bdfbe00a66cceb66ea3 /frontend/src/plugin-loader.tsx | |
| parent | 11a88186bab9d2e43c657a0bee7c24ff73be6434 (diff) | |
| download | decky-loader-70104065e2145e9a04fef4ae28ec9875a6114e2d.tar.gz decky-loader-70104065e2145e9a04fef4ae28ec9875a6114e2d.zip | |
chore: get rid of useless old tabs hook
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
| -rw-r--r-- | frontend/src/plugin-loader.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index cba74a9e..9e35ee46 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -30,7 +30,6 @@ import RouterHook from './router-hook'; import { deinitSteamFixes, initSteamFixes } from './steamfixes'; import { checkForUpdates } from './store'; import TabsHook from './tabs-hook'; -import OldTabsHook from './tabs-hook.old'; import Toaster from './toaster'; import { VerInfo, callUpdaterMethod } from './updater'; import { getSetting, setSetting } from './utils/settings'; @@ -43,8 +42,7 @@ const FilePicker = lazy(() => import('./components/modals/filepicker')); class PluginLoader extends Logger { private plugins: Plugin[] = []; - private tabsHook: TabsHook | OldTabsHook = document.title == 'SP' ? new OldTabsHook() : new TabsHook(); - // private windowHook: WindowHook = new WindowHook(); + private tabsHook: TabsHook = new TabsHook(); private routerHook: RouterHook = new RouterHook(); public toaster: Toaster = new Toaster(); private deckyState: DeckyState = new DeckyState(); |
