diff --git a/src/renderer/src/pages/game-details/hero/hero-panel-actions.tsx b/src/renderer/src/pages/game-details/hero/hero-panel-actions.tsx index 0aaec621..708dbfed 100644 --- a/src/renderer/src/pages/game-details/hero/hero-panel-actions.tsx +++ b/src/renderer/src/pages/game-details/hero/hero-panel-actions.tsx @@ -139,46 +139,7 @@ export function HeroPanelActions() { ); - if (game?.progress === 1) { - return ( - <> - {game?.progress === 1 ? ( - - ) : ( - toggleGameOnLibraryButton - )} - - {isGameRunning ? ( - - ) : ( - - )} - - ); - } - - if (game?.status === "active") { + if (game?.status === "active" && game?.progress !== 1) { return ( <> + + ) : ( + toggleGameOnLibraryButton + )} + + {isGameRunning ? ( + + ) : ( + + )} ); }