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 - -
-
- )} ); };