Skip to content

Commit

Permalink
dont show moderation ticket alert in header
Browse files Browse the repository at this point in the history
  • Loading branch information
SupertigerDev committed Oct 18, 2024
1 parent 2db935e commit fe7a8d5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/main-pane-header/MainPaneHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,7 @@ export default function MainPaneHeader() {
.array()
.filter((friend) => friend.status === FriendStatus.PENDING).length;

const ticketNotifications =
tickets.hasModerationTicketNotification() ||
tickets.hasTicketNotification();
const ticketNotifications = tickets.hasTicketNotification();

const mentionsCount = mentions.array().reduce((count, mention) => {
return count + (mention?.count || 0);
Expand Down

0 comments on commit fe7a8d5

Please sign in to comment.