diff --git a/src/components/GameTable.tsx b/src/components/GameTable.tsx
index 7b88baf..846df64 100644
--- a/src/components/GameTable.tsx
+++ b/src/components/GameTable.tsx
@@ -237,24 +237,13 @@ function Scoreboard() {
const game = useGameStore((s) => s.game);
const { t } = useI18n();
return (
-
-
-
/
-
-
-
{t("home.target")}
-
{game.targetScore}
-
+
+
+ ยท
+
+
+ {game.targetScore}
+
);
}
@@ -270,13 +259,12 @@ function ScoreCol({
score: number;
accent: string;
}) {
- const { t } = useI18n();
return (
-
-
{label}
-
{score}
-
- {t("score.tricks")}: {tricks}
+
+
{label}
+
+ {score}
+ ({tricks})
);