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 4b53f19 commit abc041dCopy full SHA for abc041d
composeApp/src/commonMain/kotlin/org/ooni/probe/domain/GetSettings.kt
@@ -272,21 +272,7 @@ class GetSettings(
272
key = SettingsKey.STORAGE_SIZE,
273
type = PreferenceItemType.BUTTON,
274
supportingContent = {
275
- var showDialog by remember { mutableStateOf(false) }
276
- if (showDialog) {
277
- ClearStorageDialog(
278
- onClose = { showDialog = false },
279
- fullReset = true,
280
- )
281
- }
282
-
283
- Text(
284
- storageUsed.formatDataUsage(),
285
- modifier = Modifier.combinedClickable(
286
- onClick = {},
287
- onLongClick = { showDialog = true },
288
- ),
289
+ Text(storageUsed.formatDataUsage())
290
},
291
trailingContent = {
292
var showDialog by remember { mutableStateOf(false) }
0 commit comments