From aeeeb1f025474543cff7183e6fc874fde43170ca Mon Sep 17 00:00:00 2001 From: Marc Wieland Date: Wed, 29 Apr 2026 16:29:02 +0200 Subject: [PATCH] Scorecard angepasst --- src/components/MatchScoreInput.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/components/MatchScoreInput.tsx b/src/components/MatchScoreInput.tsx index a8b58c3..cf691ed 100644 --- a/src/components/MatchScoreInput.tsx +++ b/src/components/MatchScoreInput.tsx @@ -90,19 +90,6 @@ export const MatchScoreInput = ({ match }: MatchScoreInputProps) => { {hasResult ? 'Aktualisieren' : 'Ergebnis speichern'} - - {hasResult && match.result && ( -
-
- = 0 ? 'text-field font-medium' : 'text-destructive'}> - {match.result.pointsA >= 0 ? '+' : ''}{match.result.pointsA} Pkt - - = 0 ? 'text-field font-medium' : 'text-destructive'}> - {match.result.pointsB >= 0 ? '+' : ''}{match.result.pointsB} Pkt - -
-
- )} ); };