Skip to content

Commit

Permalink
CW-mark-as-read-in-space Fix Eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
MeyerPV committed Jul 5, 2024
1 parent 58b0dea commit 4e38484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/commonFeed/utils/getAllowedItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const MENU_ITEM_TO_CHECK_FUNCTION_MAP: Record<
!isFollowInProgress && Boolean(commonMember && !commonMember.isFollowing),
[CommonFeedMenuItem.Mute]: ({ commonMember, isFollowInProgress }) =>
!isFollowInProgress && Boolean(commonMember?.isFollowing),
[CommonFeedMenuItem.MarkRead]: true,
[CommonFeedMenuItem.MarkRead]: () => true,
};

export const getAllowedItems = (items: Item[], options: Options): Item[] =>
Expand Down

0 comments on commit 4e38484

Please sign in to comment.