( username?: string, )
| 19 | } |
| 20 | |
| 21 | export const getReplyToInitialContent = ( |
| 22 | username?: string, |
| 23 | ): string | undefined => (username ? `@${username}\u00a0` : undefined); |
| 24 | |
| 25 | export const useComments = (post: Post): UseComments => { |
| 26 | const { logEvent } = useLogContext(); |
no outgoing calls
no test coverage detected