diff --git a/components/match-detail/score-header.tsx b/components/match-detail/score-header.tsx index cf1de4a..e82c8ca 100644 --- a/components/match-detail/score-header.tsx +++ b/components/match-detail/score-header.tsx @@ -67,7 +67,7 @@ export function ScoreHeader({ data, isDark, topInset }: ScoreHeaderProps) { - {match.eventFinalResult && match.eventFinalResult !== "" + {match.eventFinalResult && match.eventFinalResult !== "-" ? match.eventFinalResult : "0 - 0"} @@ -181,7 +181,7 @@ const styles = StyleSheet.create({ }, scoreValue: { color: "#000", - fontSize: 32, + fontSize: 19, fontWeight: "bold", letterSpacing: 2, },