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
@@ -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,