This commit is contained in:
2026-01-12 14:27:01 +01:00
parent 8601d7ced1
commit 76281892a2
5 changed files with 42 additions and 16 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ export function GameDetails({ onShowToast }: Props) {
};
if (loading) return <LoadingState message="Loading game details..." />;
if (error) return <ErrorState message={error} onRetry={() => window.location.reload()} />;
if (error) return <ErrorState message={error} onRetry={() => navigate(0)} />;
if (!game) return <EmptyState icon="🎮" title="Game not found" description="This game doesn't exist or has been deleted" />;
const getExternalLink = () => {