We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b09e8 commit a58768bCopy full SHA for a58768b
app/src/main/java/to/bitkit/ui/settings/backgroundPayments/BackgroundPaymentsSettings.kt
@@ -93,13 +93,11 @@ private fun Content(
93
onClick = onSystemSettingsClick
94
)
95
96
- AnimatedVisibility(
97
- visible = hasPermission,
98
- modifier = Modifier.padding(vertical = 16.dp),
99
- ) {
+ if (hasPermission) {
100
BodyM(
101
text = "Background payments are enabled. You can receive funds even when the app is closed (if your device is connected to the internet).",
102
color = Colors.White64,
+ modifier = Modifier.padding(vertical = 16.dp),
103
104
}
105
0 commit comments