From a0bde7a80c530a89b048adac32e38e954e3ca1c6 Mon Sep 17 00:00:00 2001 From: PianoNic <79938743+PianoNic@users.noreply.github.com> Date: Sun, 19 Jul 2026 13:31:08 +0200 Subject: [PATCH] Shortened TOTP picker hint to "Tap to choose" --- lib/ui/authenticator/totp_field_picker.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/authenticator/totp_field_picker.dart b/lib/ui/authenticator/totp_field_picker.dart index 0a21395..46fc4bc 100644 --- a/lib/ui/authenticator/totp_field_picker.dart +++ b/lib/ui/authenticator/totp_field_picker.dart @@ -108,7 +108,7 @@ class _TotpFieldPickerState extends State { final colors = context.theme.colors; final selected = _selected; final subtitle = selected == null - ? 'Not set — tap to choose' + ? 'Tap to choose' : [selected.title, if (selected.subtitle != null) selected.subtitle].join(' · '); return FTile( prefix: const Icon(FIcons.shieldCheck),