diff --git a/src/components/Launch/LaunchButton/index.tsx b/src/components/Launch/LaunchButton/index.tsx index 3856611..6ecba90 100644 --- a/src/components/Launch/LaunchButton/index.tsx +++ b/src/components/Launch/LaunchButton/index.tsx @@ -4,7 +4,7 @@ import { InstallingIcon, UpdateIcon } from "@app/assets/Icons"; import { calculatePayloadPercentage } from "@app/utils/Download/payload"; import PayloadProgress from "../../PayloadProgress"; import Button from "@app/components/Button"; -import { DropdownButton, DropdownItem } from "@app/components/DropdownButton"; +// import { DropdownButton, DropdownItem } from "@app/components/DropdownButton"; interface LaunchButtonProps extends React.PropsWithChildren { version: YARGVersion, @@ -20,13 +20,13 @@ export function LaunchButton(props: LaunchButtonProps) { Update {playName} ; - return version.download()}> {buttonChildren} - ; + ; } if (version.state === YARGStates.DOWNLOADING) { @@ -49,26 +49,25 @@ export function LaunchButton(props: LaunchButtonProps) { Play {playName} ; - const dropdownChildren = <> - - Open Folder - - - Clear Caches - - - Uninstall - - ; + // const dropdownChildren = <> + // + // Open Folder + // + // + // Clear Caches + // + // + // Uninstall + // + // ; - return version.play()} - dropdownChildren={dropdownChildren}> + onClick={() => version.play()}> {buttonChildren} - ; + ; } if (version.state === YARGStates.PLAYING) {