fix: wrong env for webmention controller

This commit is contained in:
sy
2023-04-01 00:10:15 +08:00
parent 05c4f95f9c
commit 6f85b4d7ce

View File

@@ -107,7 +107,7 @@ const Comment = ({ frontMatter }) => {
<GitalkComponent frontMatter={frontMatter}/>
</div>)}
{BLOG.COMMENT_WEBMENTION.ENABLE === 'yes' && (<div key='WebMention'>
{BLOG.COMMENT_WEBMENTION.ENABLE && (<div key='WebMention'>
<WebMentionComponent frontMatter={frontMatter} className="px-2" />
</div>)}
</Tabs>