correct strings

This commit is contained in:
Fabian Freund
2025-11-27 10:30:44 +01:00
parent 5b8a112b63
commit 7ece209d08
2 changed files with 2 additions and 2 deletions
@@ -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');
},
),
),
@@ -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,