Skip to content

Commit 4e38484

Browse files
committed
CW-mark-as-read-in-space Fix Eslint
1 parent 58b0dea commit 4e38484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/commonFeed/utils/getAllowedItems.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const MENU_ITEM_TO_CHECK_FUNCTION_MAP: Record<
2020
!isFollowInProgress && Boolean(commonMember && !commonMember.isFollowing),
2121
[CommonFeedMenuItem.Mute]: ({ commonMember, isFollowInProgress }) =>
2222
!isFollowInProgress && Boolean(commonMember?.isFollowing),
23-
[CommonFeedMenuItem.MarkRead]: true,
23+
[CommonFeedMenuItem.MarkRead]: () => true,
2424
};
2525

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

0 commit comments

Comments
 (0)