Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export function shouldShowComments( post ) {
if ( post.discussion && ( post.discussion.comments_open || post.discussion.comment_count > 0 ) ) {
return true;
}
return false;
}