fix: playtime not showing on UI

This commit is contained in:
Zamitto 2024-05-12 12:41:56 -03:00
parent 042dc77c4a
commit 62cff6ce84

View File

@ -106,7 +106,7 @@ export function HeroPanel({
);
}
if (game && GameStatusHelper.isReady(game?.status ?? null)) {
if (game && GameStatusHelper.isReady(game?.status ?? GameStatus.Finished)) {
return <HeroPanelPlaytime game={game} isGamePlaying={isGamePlaying} />;
}