We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1992090 commit 70fca52Copy full SHA for 70fca52
src/containers/post/RelatedPostsForGuest.tsx
@@ -80,10 +80,7 @@ function RelatedPostsForGuest({
80
<h4>관심 있을 만한 포스트</h4>
81
{postsWithAds.map((post, index) => {
82
return post ? (
83
- <Row
84
- style={{ marginBottom: '-1.5rem' }}
85
- onClick={() => gtag('event', 'recommend_guest_click')}
86
- >
+ <Row onClick={() => gtag('event', 'recommend_guest_click')}>
87
<StyledRowLink
88
to={`/@${post.user.username}/${post.url_slug}`}
89
key={post.id ?? index}
@@ -111,7 +108,7 @@ function RelatedPostsForGuest({
111
108
</StyledRowLink>
112
109
</Row>
113
110
) : (
114
- <Row>
+ <Row style={{ marginBottom: '-1.5rem' }}>
115
<RelatedPostAd isMobile />
116
117
);
0 commit comments