{#if comment.user}
{/if} {comment.user?.name ?? 'N/A'}
{comment.likeCount}
{#each childComments as comment (comment.id)} {#if comment}
{/if} {/each}
client.toggleLike(comment.id, 'THREAD_COMMENT', !!comment.isLiked)} disabled={isLocked || !$viewer?.viewer}>
{#if $viewer?.viewer?.id === comment.user?.id}
client.deleteComment(comment.id, rootCommentId)} disabled={isLocked || !$viewer?.viewer}>
{/if}
{since(new Date(comment.createdAt * 1000))}