Skip to content

Commit

Permalink
fix(ReplyRequestReason): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Jul 21, 2024
1 parent a01244d commit af868e9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/ReplyRequestReason/ReplyRequestReason.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { useMutation } from '@apollo/react-hooks';
import { makeStyles } from '@material-ui/core/styles';
import { Box, Button } from '@material-ui/core';
import TimeInfo from 'components/Infos/TimeInfo';
import Link from 'next/link';

import { ThumbUpIcon, ThumbDownIcon } from 'components/icons';
import Avatar from 'components/AppLayout/Widgets/Avatar';
Expand Down Expand Up @@ -127,7 +126,7 @@ function ReplyRequestReason({ replyRequest, articleId }) {
<Box flex={1} className={classes.reasonBody}>
<Box className={classes.header}>
<p className={classes.user}>{user.id}</p>
<TimeInfo time={replyRequest.updatedAt}/>
<TimeInfo time={replyRequest.updatedAt} />
</Box>
<p className={classes.reason}>{replyRequestReason}</p>
<Box display="flex" justifyContent="space-between">
Expand Down

0 comments on commit af868e9

Please sign in to comment.