Skip to content

Commit

Permalink
fix: blog 빈 div 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkim0 committed Jan 19, 2024
1 parent 31560b9 commit 4ecfbb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/theme/BlogPostItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default function BlogPostItemWrapper(props: Props): JSX.Element {
return (
<>
<BlogPostItem {...props} />
<div className='margin-top--lg'>
{isBlogPostPage && (
{isBlogPostPage && (
<div className="margin-top--lg">
<Giscus
repo="jmkim0/blog"
repoId="R_kgDOK-1fHg"
Expand All @@ -26,8 +26,8 @@ export default function BlogPostItemWrapper(props: Props): JSX.Element {
lang="ko"
loading="lazy"
/>
)}
</div>
</div>
)}
</>
);
}

0 comments on commit 4ecfbb8

Please sign in to comment.