diff options
| author | AAGaming <aagaming@riseup.net> | 2024-07-09 02:35:24 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-08-03 14:04:19 -0400 |
| commit | 28c7254ef6952d9504472ebcbb05238b50aa6086 (patch) | |
| tree | 2c9dd8359ad06a2b4cbb38763fe7ae845b4489e0 /frontend/src/plugin-loader.tsx | |
| parent | dcfaf11696edbed2a9c0be01a7c37e8faab773bc (diff) | |
| download | decky-loader-28c7254ef6952d9504472ebcbb05238b50aa6086.tar.gz decky-loader-28c7254ef6952d9504472ebcbb05238b50aa6086.zip | |
initial implementation of new router and qam hooks
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
| -rw-r--r-- | frontend/src/plugin-loader.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index f7d362a7..f5ff71b5 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -36,6 +36,7 @@ import Toaster from './toaster'; import { getVersionInfo } from './updater'; import { getSetting, setSetting } from './utils/settings'; import TranslationHelper, { TranslationClass } from './utils/TranslationHelper'; +import AppHook from './app-hook'; const StorePage = lazy(() => import('./components/store/Store')); const SettingsPage = lazy(() => import('./components/settings')); @@ -82,8 +83,6 @@ class PluginLoader extends Logger { constructor() { super(PluginLoader.name); - this.errorBoundaryHook.init(); - DeckyBackend.addEventListener('loader/notify_updates', this.notifyUpdates.bind(this)); DeckyBackend.addEventListener('loader/import_plugin', this.importPlugin.bind(this)); DeckyBackend.addEventListener('loader/unload_plugin', this.unloadPlugin.bind(this)); |
