Skip to content

Commit

Permalink
Fix ignoring expanded cards state if forceOpen provided
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzipp committed Jul 4, 2024
1 parent 15869e3 commit cbc032b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entries/contentScript/components/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Card({
}

useEffect(() => {
if (!forceOpen) {
if (forceOpen) {
return;
}

Expand Down

0 comments on commit cbc032b

Please sign in to comment.