diff --git a/lib/ui/two_factor_setup_page.dart b/lib/ui/two_factor_setup_page.dart index d1d58246e..5f5568581 100644 --- a/lib/ui/two_factor_setup_page.dart +++ b/lib/ui/two_factor_setup_page.dart @@ -91,10 +91,10 @@ class _TwoFactorSetupPageState extends State unselectedLabelColor: Colors.grey, tabs: [ Tab( - text: "enter code", + text: "scan code", ), Tab( - text: "scan code", + text: "enter code", ) ], controller: _tabController, @@ -103,8 +103,8 @@ class _TwoFactorSetupPageState extends State Expanded( child: TabBarView( children: [ - _getSecretCode(), _getBarCode(), + _getSecretCode(), ], controller: _tabController, ),