diff --git a/lib/ui/authenticator/totp_field_picker.dart b/lib/ui/authenticator/totp_field_picker.dart index 99e70e5..0a21395 100644 --- a/lib/ui/authenticator/totp_field_picker.dart +++ b/lib/ui/authenticator/totp_field_picker.dart @@ -110,14 +110,12 @@ class _TotpFieldPickerState extends State { final subtitle = selected == null ? 'Not set — tap to choose' : [selected.title, if (selected.subtitle != null) selected.subtitle].join(' · '); - return FCard( - child: FTile( - prefix: const Icon(FIcons.shieldCheck), - title: Text(widget.field.label), - subtitle: Text(subtitle, style: selected == null ? TextStyle(color: colors.mutedForeground) : null), - suffix: const Icon(FIcons.chevronRight), - onPress: _openMenu, - ), + return FTile( + prefix: const Icon(FIcons.shieldCheck), + title: Text(widget.field.label), + subtitle: Text(subtitle, style: selected == null ? TextStyle(color: colors.mutedForeground) : null), + suffix: const Icon(FIcons.chevronRight), + onPress: _openMenu, ); } }