(post?: Post)
| 150 | }; |
| 151 | |
| 152 | const getPostTypeForCard = (post?: Post): PostType => { |
| 153 | if (!post) { |
| 154 | return PostType.Article; |
| 155 | } |
| 156 | |
| 157 | if (isSocialTwitterPost(post)) { |
| 158 | return PostType.SocialTwitter; |
| 159 | } |
| 160 | |
| 161 | return post.type; |
| 162 | }; |
| 163 | |
| 164 | type GetTagsProps = { |
| 165 | isListFeedLayout: boolean; |
no test coverage detected