Fix: Remove redundant explicit type argument in AppShell.kt

This commit is contained in:
2025-11-06 17:28:20 +01:00
parent cf799eba12
commit 20d9139256

View File

@@ -514,7 +514,7 @@ fun AppShell(
}
val lifecycleOwner = LocalLifecycleOwner.current
val (secretKey, setSecretKey) = rememberSaveable(stateSaver = SecretKeySaver) { mutableStateOf<SecretKey?>(null) }
val (secretKey, setSecretKey) = rememberSaveable(stateSaver = SecretKeySaver) { mutableStateOf(null) }
val (isDecryptionAttempted, setIsDecryptionAttempted) = rememberSaveable { mutableStateOf(false) }
DisposableEffect(lifecycleOwner, context, scope) {