diff --git a/src/renderer/components/modal/modal.component.tsx b/src/renderer/components/modal/modal.component.tsx index 843407c2..c871aa78 100644 --- a/src/renderer/components/modal/modal.component.tsx +++ b/src/renderer/components/modal/modal.component.tsx @@ -4,6 +4,7 @@ import { useEffect, useState } from "react" import { LoginModal } from "./modal-types/login-modal.component"; import { GuardModal } from "./modal-types/guard-modal.component"; +import { UninstallModal } from "./modal-types/uninstall-modal.component"; export function Modal() { @@ -20,10 +21,11 @@ export function Modal() { return (
- modalSevice.resolve({exitCode: ModalExitCode.NO_CHOICE})} className={`absolute top-0 bottom-0 right-0 left-0 transition-opacity bg-black ${modalType? "opacity-60" : "opacity-0"}`}> -
+ modalSevice.resolve({exitCode: ModalExitCode.NO_CHOICE})} className={`absolute top-0 bottom-0 right-0 left-0 transition-opacity bg-black ${modalType ? "opacity-60" : "opacity-0"}`}> +
{modalType === ModalType.STEAM_LOGIN && } {modalType === ModalType.GUARD_CODE && } + {modalType === ModalType.UNINSTALL && }
)