fix: peer stats units should not be lowercase

closes #1278
This commit is contained in:
zaneschepke
2026-06-17 06:20:30 -04:00
parent aaf7ebd326
commit 160a6ca84d
@@ -42,6 +42,6 @@ private fun TransferMetric(icon: ImageVector, text: String, style: TextStyle, co
modifier = Modifier.size(12.dp),
)
Text(text = text.lowercase(), style = style, color = color)
Text(text = text, style = style, color = color)
}
}