Fix: Remove redundant explicit type argument in AppShell.kt
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user