From d067fe6361b6bebd2d1ae4adff2cf3e49cbd99fe Mon Sep 17 00:00:00 2001 From: AAGaming Date: Thu, 27 Jun 2024 00:09:00 -0400 Subject: add some errorboundaries --- frontend/src/router-hook.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'frontend/src/router-hook.tsx') diff --git a/frontend/src/router-hook.tsx b/frontend/src/router-hook.tsx index a42c2daa..7b66d351 100644 --- a/frontend/src/router-hook.tsx +++ b/frontend/src/router-hook.tsx @@ -1,4 +1,4 @@ -import { Export, Patch, afterPatch, findModuleExport } from '@decky/ui'; +import { ErrorBoundary, Focusable, Patch, afterPatch } from '@decky/ui'; import { FC, ReactElement, ReactNode, cloneElement, createElement, memo } from 'react'; import type { Route } from 'react-router'; @@ -41,9 +41,7 @@ class RouterHook extends Logger { window.__ROUTER_HOOK_INSTANCE?.deinit?.(); window.__ROUTER_HOOK_INSTANCE = this; - this.gamepadWrapper = findModuleExport((e: Export) => - e?.render?.toString()?.includes('["flow-children","onActivate","onCancel","focusClassName",'), - ); + this.gamepadWrapper = Focusable; let Route: new () => Route; // Used to store the new replicated routes we create to allow routes to be unpatched. @@ -63,7 +61,9 @@ class RouterHook extends Logger { routes.forEach(({ component, props }, path) => { newRouterArray.push( - {createElement(component)} + + {createElement(component)} + , ); }); -- cgit v1.2.3