From 5fd5b2f08cd39a26eecab8901c1d39020c056ac1 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Tue, 12 Dec 2023 22:21:25 -0500 Subject: fix: Adjust tabs and toaster hooks to work on react 18, also half-fix Valve Internal --- frontend/src/tabs-hook.old.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/tabs-hook.old.tsx') diff --git a/frontend/src/tabs-hook.old.tsx b/frontend/src/tabs-hook.old.tsx index 5b511596..982f6f09 100644 --- a/frontend/src/tabs-hook.old.tsx +++ b/frontend/src/tabs-hook.old.tsx @@ -1,5 +1,5 @@ // TabsHook for versions before the Desktop merge -import { Patch, afterPatch, sleep } from 'decky-frontend-lib'; +import { Patch, afterPatch, getReactRoot, sleep } from 'decky-frontend-lib'; import { memo } from 'react'; import NewTabsHook from './tabs-hook'; @@ -35,7 +35,7 @@ class TabsHook extends NewTabsHook { init() { const self = this; - const tree = (document.getElementById('root') as any)._reactRootContainer._internalRoot.current; + const tree = getReactRoot(document.getElementById('root') as any); let scrollRoot: any; async function findScrollRoot(currentNode: any, iters: number): Promise { if (iters >= 30) { -- cgit v1.2.3