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');
},
),
),