diff --git a/src/decky-patches/decky-patch-store.ts b/src/decky-patches/decky-patch-store.ts index ccb6690..fee5b98 100644 --- a/src/decky-patches/decky-patch-store.ts +++ b/src/decky-patches/decky-patch-store.ts @@ -25,6 +25,7 @@ const createDeckyPatchStore = (backend: Backend) => initializeStore: async () => { try { const shouldEnable = await backend.storeRead("enableNavPatch"); + return; if (shouldEnable) { const patch = enableNavPatch(); set({ navPatchInstance: patch }); diff --git a/src/modules/qam-tab-page/components/QamDummyFunctionBoundary.tsx b/src/modules/qam-tab-page/components/QamDummyFunctionBoundary.tsx index 0f8332e..9aff28a 100644 --- a/src/modules/qam-tab-page/components/QamDummyFunctionBoundary.tsx +++ b/src/modules/qam-tab-page/components/QamDummyFunctionBoundary.tsx @@ -1,5 +1,5 @@ import { useCSSLoaderValue } from "@/backend"; -import { PanelSectionRow } from "@decky/ui"; +import { PanelSection, PanelSectionRow } from "@decky/ui"; export function QamDummyFunctionBoundary({ children }: { children: React.ReactNode }) { const dummyFunctionResult = useCSSLoaderValue("dummyFunctionResult"); @@ -7,12 +7,12 @@ export function QamDummyFunctionBoundary({ children }: { children: React.ReactNo if (!dummyFunctionResult) { return ( <> - + CSS Loader failed to initialize, try reloading, and if that doesn't work, try restarting your deck. - + ); }