summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2023-07-19 13:05:57 +0200
committerAlbin <albin@mullvad.net>2023-07-19 13:58:35 +0200
commitddb0596f5ef0a2a219056d1a97ae65edc6b60ef8 (patch)
tree3415356befc5bc851880596a243d4b95b05d9f56 /android
parentf3f5e3b5b47c288a430a0501d6a4bd1dbb4a37be (diff)
downloadmullvadvpn-ddb0596f5ef0a2a219056d1a97ae65edc6b60ef8.tar.xz
mullvadvpn-ddb0596f5ef0a2a219056d1a97ae65edc6b60ef8.zip
Fix incorrect version formatting in settings
Diffstat (limited to 'android')
-rw-r--r--android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/cell/NavigationComposeCell.kt6
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)