Skip to content

Commit

Permalink
fix : eslint error fix (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minggurazi authored Jul 27, 2023
2 parents e1b7fcb + c7087d6 commit 4e812bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/card-actions/EditCardBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ const EditCardBtn = () => {
const { expired, finished } = currentCard;

return (
<Link to="edit" style={{ width: '32%' }} state={{ background: `/${currentGame}` }}>
<Link
to="edit"
style={{ width: '32%' }}
state={{ background: `/${currentGame}` }}
>
<Button
disabled={expired === 'true' || finished === 'true'}
fullWidth
Expand Down

0 comments on commit 4e812bc

Please sign in to comment.