Skip to content

Commit

Permalink
fixed broken hide logic, derp
Browse files Browse the repository at this point in the history
  • Loading branch information
robertfmurdock committed Oct 15, 2024
1 parent c0c0892 commit dcc57f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ val ContributionOverviewContent by nfc<ContributionOverviewContentProps> { (part
val (menuTarget, setMenuTarget) = useState<Pair<ReferenceElement, Player>?>(null)
val popperInstance = usePopper(menuTarget?.first, popperRef.current, popperOptions(arrowRef))
CouplingPopUp(
hide = menuTarget != null,
hide = menuTarget == null,
popperRef = popperRef,
arrowRef = arrowRef,
popperInstance = popperInstance,
Expand Down

0 comments on commit dcc57f2

Please sign in to comment.