()
| 80 | setOpen(false); |
| 81 | }; |
| 82 | const handleOpen = () => { |
| 83 | setOpen(true); |
| 84 | }; |
| 85 | const authorUrl = latestYear ? postsApplicantPath(urlPostId, `${postObj.author}@${latestYear}`) : null; |
| 86 | const authorLinkProps = authorUrl ? {component: Link, to: authorUrl} : {}; |
| 87 | const commentsByParentId = comments.reduce((acc, comment) => { |
nothing calls this directly
no outgoing calls
no test coverage detected