Skip to content

Commit

Permalink
fix: hidden article sections
Browse files Browse the repository at this point in the history
  • Loading branch information
rutajdash committed Apr 23, 2022
1 parent 7641ece commit e03982d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/components/article/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ const ArticleHeader = ({ article }) => {
style={{ textDecoration: 'none', cursor: 'pointer' }}
>
<div key={name} className={classes.authorWrapper}>
{matches && (
{/* {matches && (
<Image
src={user}
alt='authorName'
className={classes.authorImg}
// className={classes.author}
/>
)}
)} */}

{!matches && (
<Typography variant='body2' className={classes.author}>
Expand Down
2 changes: 1 addition & 1 deletion client/src/screens/Article.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Article({ article, bind, toggleSidebar }) {
<Disclaimer />
<ArticleTags tags={article?.tags} />
<hr />
<Comments />
{/* <Comments /> */}
</Grid>

<Grid item md={3}>
Expand Down

0 comments on commit e03982d

Please sign in to comment.