Skip to content

Commit

Permalink
fixing type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchand-Nicolas committed Sep 16, 2023
1 parent 76949d6 commit 887bc2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/quests/task.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const Task: FunctionComponent<Task> = ({
onClick={() => setIsClicked(!isClicked)}
>
<div className="flex items-center">
<div className={isClicked ? "rotate-90" : null}>
<div className={isClicked ? "rotate-90" : undefined}>
<ArrowRightIcon width={"16"} color="white" />
</div>
<p className="ml-2 mr-2">{name}</p>
Expand Down

0 comments on commit 887bc2c

Please sign in to comment.