From 02521a797e195b331af1778cd7bc854d3a396ead Mon Sep 17 00:00:00 2001 From: xXJsonDeruloXx Date: Sat, 1 Aug 2026 14:47:18 -0400 Subject: refactor patch management and add ownership safeguards --- src/index.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx index 4a9a9f6..6d598fc 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2,7 +2,6 @@ import { definePlugin } from "@decky/api"; import { MdOutlineAutoAwesomeMotion } from "react-icons/md"; import { useState, useEffect } from "react"; import { OptiScalerControls } from "./components"; -// import { InstalledGamesSection } from "./components/InstalledGamesSection"; import { checkFGModPath } from "./api"; import { safeAsyncOperation } from "./utils"; import { TIMEOUTS } from "./utils/constants"; @@ -12,6 +11,8 @@ type FgmodInfo = { version?: string | null; selected_fsr4_variant?: string | null; selected_fsr4_variant_label?: string | null; + framegen_backend?: string | null; + framegen_backend_label?: string | null; install_manifest_present?: boolean; }; @@ -43,11 +44,6 @@ function MainContent() { setPathExists={setPathExists} fgmodInfo={fgmodInfo} /> - {pathExists === true ? ( - <> - {/* */} - - ) : null} ); } -- cgit v1.2.3