aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/presentation/common_widget/custom_top_bar.dart5
-rw-r--r--macos/Podfile.lock2
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/presentation/common_widget/custom_top_bar.dart b/lib/presentation/common_widget/custom_top_bar.dart
index 900f8be..52e1e58 100644
--- a/lib/presentation/common_widget/custom_top_bar.dart
+++ b/lib/presentation/common_widget/custom_top_bar.dart
@@ -18,7 +18,8 @@ class CustomTopBarState extends ConsumerState<CustomTopBar> {
Widget build(BuildContext context) {
final singnalsConnection =
ref.watch(signalsProvider.select((sinals) => sinals));
- final user = ref.watch(usersProvider.select((user) => user));
+ final userName =
+ ref.watch(usersProvider.select((user) => user.selectedUser.name));
DateFormat dateFormat = DateFormat('hh:mm a');
final currentime = ref.watch(currentTimeProvider);
@@ -44,7 +45,7 @@ class CustomTopBarState extends ConsumerState<CustomTopBar> {
child: SizedBox(width: 16), // 16px space
),
TextSpan(
- text: user.selectedUser.name,
+ text: userName,
style: const TextStyle(fontWeight: FontWeight.bold),
),
],
diff --git a/macos/Podfile.lock b/macos/Podfile.lock
index f3a038b..09ccbe9 100644
--- a/macos/Podfile.lock
+++ b/macos/Podfile.lock
@@ -39,4 +39,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367
-COCOAPODS: 1.11.3
+COCOAPODS: 1.12.1