aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/article
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/article')
-rw-r--r--src/pages/article/[slug].tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx
index 7abbabc..812fffe 100644
--- a/src/pages/article/[slug].tsx
+++ b/src/pages/article/[slug].tsx
@@ -99,10 +99,7 @@ const ArticlePage: NextPageWithLayout<ArticlePageProps> = ({
target={`/sujet/${topic.slug}`}
className={styles.btn}
>
- {topic.logo && (
- <ResponsiveImage className={styles.btn__icon} {...topic.logo} />
- )}{' '}
- {topic.name}
+ {topic.logo && <ResponsiveImage {...topic.logo} />} {topic.name}
</ButtonLink>
);
}),