diff --git a/composeApp/src/androidMain/kotlin/net/codinux/banking/ui/service/BiometricAuthenticationService.kt b/composeApp/src/androidMain/kotlin/net/codinux/banking/ui/service/BiometricAuthenticationService.kt index 439f47b..0251742 100644 --- a/composeApp/src/androidMain/kotlin/net/codinux/banking/ui/service/BiometricAuthenticationService.kt +++ b/composeApp/src/androidMain/kotlin/net/codinux/banking/ui/service/BiometricAuthenticationService.kt @@ -52,7 +52,7 @@ class BiometricAuthenticationService( val promptInfo = BiometricPrompt.PromptInfo.Builder() .setTitle(this.activity.getString(R.string.activity_login_authenticate_with_biometrics_prompt)) //.setSubtitle() // TODO: add subtitle? - //.setNegativeButtonText(this.activity.getString(android.R.string.cancel)) // is not allowed when device credentials are allowed + .setNegativeButtonText(this.activity.getString(android.R.string.cancel)) // is not allowed when device credentials are allowed .setAllowedAuthenticators(allowedAuthenticators) .build()