Skip to content

Commit

Permalink
fix: wrong env for webmention controller
Browse files Browse the repository at this point in the history
  • Loading branch information
siygle committed Mar 31, 2023
1 parent 05c4f95 commit 6f85b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 6f85b4d

Please sign in to comment.