e.stopPropagation()}>
{match.homeTeam.shortName} {match.score.home}:{match.score.away} {match.awayTeam.shortName}
diff --git a/frontend/src/components/Toast.tsx b/frontend/src/components/Toast.tsx
index 75c40b3..78a6577 100644
--- a/frontend/src/components/Toast.tsx
+++ b/frontend/src/components/Toast.tsx
@@ -14,7 +14,7 @@ export default function Toast({ message, onDismiss, duration = 5000 }: Props) {
}, [onDismiss, duration]);
return (
-
+
{message}
);
diff --git a/frontend/src/pages/DashboardPage.tsx b/frontend/src/pages/DashboardPage.tsx
index 96f239b..5289866 100644
--- a/frontend/src/pages/DashboardPage.tsx
+++ b/frontend/src/pages/DashboardPage.tsx
@@ -43,7 +43,7 @@ export default function DashboardPage(_props: Props) {
return (
{/* Hero Card */}
-
navigate('/spiele')}>
+
navigate('/spiele')}>
Nächstes Spiel
{hero && (
@@ -105,17 +105,17 @@ export default function DashboardPage(_props: Props) {
{/* Stats Row */}
-
+
{stats.rank !== null ? stats.rank : '—'}
Dein Rang
-
+
{stats.totalPoints}
Punkte
-
+
{formatStreak(stats.streak)}
Streak
@@ -127,7 +127,7 @@ export default function DashboardPage(_props: Props) {
{nudges.map((nudge, i) => (
{
if (nudge.type === 'untipped') navigate('/spiele');
else if (nudge.type === 'leader') navigate('/rangliste');