Skip to content

Commit

Permalink
that should work idk
Browse files Browse the repository at this point in the history
  • Loading branch information
beebls committed Sep 27, 2023
1 parent 862c968 commit 1091557
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/deckyPatches/NavPatchInfoModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DialogButton, Focusable, ConfirmModal } from "decky-frontend-lib";
import { Theme } from "../ThemeTypes";
import { disableNavPatch, enableNavPatch } from "./NavPatch";
import { setNavPatch } from "./NavPatch";
export function NavPatchInfoModalRoot({
themeData,
closeModal,
Expand All @@ -9,7 +9,7 @@ export function NavPatchInfoModalRoot({
closeModal?: any;
}) {
function onButtonClick() {
enableNavPatch();
setNavPatch(true);
closeModal();
}
return (
Expand All @@ -21,4 +21,4 @@ export function NavPatchInfoModalRoot({
</span>
</ConfirmModal>
);
}
}

0 comments on commit 1091557

Please sign in to comment.