Remove PIN & sign-in auto settings (#397)

Unfortunately, I think the PIN and automatic sign-in features require
more thought before it should be rolled out as a stable feature.

This PR disables the two settings and removes them from the UI.

See discussions in #321 and will reopen #268
This commit is contained in:
damontecres 2025-12-08 10:13:51 -05:00 committed by GitHub
parent fa141adc60
commit 82927d1968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 50 additions and 47 deletions

View file

@ -119,11 +119,13 @@ fun SwitchUserContent(
users = users,
currentUser = currentUser,
onSwitchUser = { user ->
if (user.pin.isNotNullOrBlank()) {
switchUserWithPin = user
} else {
viewModel.switchUser(user)
}
// TODO PIN-related
// if (user.pin.isNotNullOrBlank()) {
// switchUserWithPin = user
// } else {
// viewModel.switchUser(user)
// }
viewModel.switchUser(user)
},
onAddUser = { showAddUser = true },
onRemoveUser = { user ->