(item: FeedItem)
| 54 | feedName, |
| 55 | }: UsePostModalNavigationProps): UsePostModalNavigation => { |
| 56 | const isPostItem = (item: FeedItem) => |
| 57 | item.type === 'post' || isBoostedPostAd(item); |
| 58 | const router = useRouter(); |
| 59 | // special query params to track base pathnames and params for the post modal |
| 60 | const activeFeedName = router.query?.pmcid as string; |
no test coverage detected