From 681ab555b265df2fe9c91fa7eb86ecdab9c07780 Mon Sep 17 00:00:00 2001 From: shilangyu Date: Tue, 6 Apr 2021 15:23:57 +0200 Subject: [PATCH] Swap instanceHost/username placement, fixes #167 --- lib/pages/manage_account.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/manage_account.dart b/lib/pages/manage_account.dart index 1b4bb21..f7a549f 100644 --- a/lib/pages/manage_account.dart +++ b/lib/pages/manage_account.dart @@ -39,7 +39,7 @@ class ManageAccountPage extends HookWidget { return Scaffold( appBar: AppBar( - title: Text('@$instanceHost@$username'), + title: Text('$username@$instanceHost'), ), body: FutureBuilder( future: userFuture,