Skip to content

Commit fe962a1

Browse files
feat:[lar-137] Fix unclose function
1 parent bad57d8 commit fe962a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/views/livewire/notification-count.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
state(['count' => Auth::user()->unreadNotifications()->count()]);
1111
12-
on(['NotificationMarkedAsRead' => fn (int $count) => $count );
12+
on(['NotificationMarkedAsRead' => fn (int $count) => $count ]);
1313
1414
?>
1515

resources/views/livewire/notification-indicator.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
state(['hasNotification' => Auth::user()->unreadNotifications()->count() > 0 ]);
1111
12-
on(['NotificationMarkedAsRead' => fn (int $count) => $count > 0]);
12+
on(['NotificationMarkedAsRead' => fn (int $count) => $count > 0 ]);
1313
1414
?>
1515

0 commit comments

Comments
 (0)