diff options
| author | Albin <albin@mullvad.net> | 2023-07-19 13:59:10 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-07-19 13:59:10 +0200 |
| commit | 1ec1b9347c9f9703cc6a27f2f56722fdc2ab27d0 (patch) | |
| tree | 3415356befc5bc851880596a243d4b95b05d9f56 /android/app/src | |
| parent | f3f5e3b5b47c288a430a0501d6a4bd1dbb4a37be (diff) | |
| parent | ddb0596f5ef0a2a219056d1a97ae65edc6b60ef8 (diff) | |
| download | mullvadvpn-1ec1b9347c9f9703cc6a27f2f56722fdc2ab27d0.tar.xz mullvadvpn-1ec1b9347c9f9703cc6a27f2f56722fdc2ab27d0.zip | |
Merge branch 'incorrect-app-version-formatting-droid-208'
Diffstat (limited to 'android/app/src')
| -rw-r--r-- | android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt index cd087f0b9f..3edab0bb77 100644 --- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt +++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt @@ -119,11 +119,7 @@ internal fun NavigationCellBody( verticalAlignment = Alignment.CenterVertically, modifier = modifier.wrapContentWidth().wrapContentHeight() ) { - Text( - text = content.uppercase(), - style = MaterialTheme.typography.labelMedium, - color = contentColor - ) + Text(text = content, style = MaterialTheme.typography.labelMedium, color = contentColor) Spacer(modifier = Modifier.width(Dimens.sideMargin)) if (isExternalLink) { DefaultExternalLinkView(content) |
