diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart index ddcfda19..8818ed8b 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart @@ -280,7 +280,7 @@ class BrowserBottomAppBar extends HookConsumerWidget { child: Consumer( builder: (context, ref, child) { final profile = ref.watch(selectedProfileProvider); - return Text(profile.value?.name ?? 'Profile'); + return Text(profile.value?.name ?? 'User'); }, ), ), diff --git a/app/lib/features/user/domain/presentation/screens/profile_list.dart b/app/lib/features/user/domain/presentation/screens/profile_list.dart index 2a81253e..0ee7cf12 100644 --- a/app/lib/features/user/domain/presentation/screens/profile_list.dart +++ b/app/lib/features/user/domain/presentation/screens/profile_list.dart @@ -15,7 +15,7 @@ class ProfileListScreen extends HookConsumerWidget { final usersAsync = ref.watch(profileRepositoryProvider); return Scaffold( - appBar: AppBar(title: const Text('Profiles')), + appBar: AppBar(title: const Text('Users')), body: usersAsync.when( data: (profiles) => ListView.builder( itemCount: profiles.length,