Remove or replace unnecessary BackHandler calls (#4148)

* Remove/replace `BackHandler` calls:

- For `UserProfileView`, remove the redundant `BackHandler` -> `navigateUp()` call.
- For `SetupBiometricView`, remove the `enabled = true` parameter, as this is the default value.
This commit is contained in:
Jorge Martin Espinosa 2025-01-15 10:43:26 +01:00 committed by GitHub
parent f31e648e35
commit a74a62c090
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 21 deletions

View file

@ -31,7 +31,7 @@ fun SetupBiometricView(
state: SetupBiometricState,
modifier: Modifier = Modifier,
) {
BackHandler(true) {
BackHandler {
state.eventSink(SetupBiometricEvents.UsePin)
}
HeaderFooterPage(