Skip to content

Commit

Permalink
FIX:onClick notifche
Browse files Browse the repository at this point in the history
  • Loading branch information
Diebbo committed Jan 8, 2025
1 parent 6bd26ea commit 4d22b1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/components/navbar/notifications-dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const NotificationsDropdown = () => {
key="clear-all"
className="text-danger"
color="danger"
onClick={handleClearAll}
onPress={handleClearAll}
>
Clear All
</DropdownItem>
Expand Down Expand Up @@ -261,7 +261,7 @@ export const NotificationsDropdown = () => {
</div>
</div>
<button
onClick={(e) => {
onPress={(e) => {
e.preventDefault();
e.stopPropagation();
handleDeleteOne(notification);
Expand Down

0 comments on commit 4d22b1d

Please sign in to comment.