summaryrefslogtreecommitdiff
path: root/frontend/src/tabs-hook.old.tsx
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2023-12-12 22:21:25 -0500
committerAAGaming <aagaming@riseup.net>2023-12-12 22:21:25 -0500
commit80a00a0d35655791a4e2bc697ad0748fe2c2f9ad (patch)
tree1b78623ff497f9b42f1cda1bcf36ab90462096d4 /frontend/src/tabs-hook.old.tsx
parent91186da97940a24c80edcd41991727d43da19456 (diff)
downloaddecky-loader-80a00a0d35655791a4e2bc697ad0748fe2c2f9ad.tar.gz
decky-loader-80a00a0d35655791a4e2bc697ad0748fe2c2f9ad.zip
fix: Adjust tabs and toaster hooks to work on react 18, also half-fix Valve Internal
Diffstat (limited to 'frontend/src/tabs-hook.old.tsx')
-rw-r--r--frontend/src/tabs-hook.old.tsx4
1 files changed, 2 insertions, 2 deletions
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<any> {
if (iters >= 30) {