Skip to content

Commit

Permalink
Clean up state
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Aug 10, 2024
1 parent a86e186 commit 8ea3fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/components/complex/portfolio/allocation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const Allocation: FunctionComponent<{
<div className="flex w-full flex-col">
<div
className="flex cursor-pointer items-center justify-between py-3"
onClick={() => setIsOpen(!isOpen)}
onClick={() => setIsOpen((prev) => !prev)}
>
<h6>{t("portfolio.allocation")}</h6>
<Icon
Expand Down

0 comments on commit 8ea3fe2

Please sign in to comment.