Skip to content

Commit

Permalink
Merge pull request #909 from hiwa0/bugfix_text_style_profile_edit_screen
Browse files Browse the repository at this point in the history
🐛 fix text style in edit screen.
  • Loading branch information
takahirom authored Sep 1, 2024
2 parents 4e84c61 + 62693fd commit c8b8910
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,10 @@ internal fun EditScreen(
)
}

Text(stringResource(ProfileCardRes.string.select_theme))
Text(
text = stringResource(ProfileCardRes.string.select_theme),
style = MaterialTheme.typography.titleMedium,
)

CardTypePiker(
selectedCardType = selectedCardType,
Expand Down

0 comments on commit c8b8910

Please sign in to comment.