Skip to content

Commit

Permalink
[fix] make category text upper case.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronniebeggs committed Apr 21, 2024
1 parent 77da1d4 commit 208a044
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default function UpdateView() {
<View style={styles.titleContainer}>
<NotificationBell />
<View style={styles.headerText}>
<Text style={styles.categoryText}>{update.category}</Text>
<Text style={styles.categoryText}>
{update.category.toUpperCase()}
</Text>
<Text style={styles.titleText}>{update.title}</Text>
</View>
</View>
Expand Down

0 comments on commit 208a044

Please sign in to comment.