Add confirm=? query-param to delete-user route and confirm dialog in flutter [skip-tests]
This commit is contained in:
@@ -186,8 +186,8 @@ class _SettingsRootPageState extends State<SettingsRootPage> {
|
||||
SettingsTile.navigation(
|
||||
leading: Icon(FontAwesomeIcons.solidBell),
|
||||
title: Text('FCM Token'),
|
||||
value: Text(AppAuth().getToken()),
|
||||
onPressed: (context) => _clipboardCopy(AppAuth().getToken()),
|
||||
value: Text(AppAuth().getTokenOrNull() ?? 'N/A'),
|
||||
onPressed: (context) => _clipboardCopy(AppAuth().getTokenOrNull() ?? ''),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
Reference in New Issue
Block a user