Skip to content

Commit

Permalink
🎓 Make drawer initially collapsed (Joystream#6365)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed Jun 4, 2024
1 parent 44bed6d commit 555352d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ const SilverTierWrapper = styled(TierWrapper)`

export const BenefitsContainer = ({ children, title }: { children: ReactNode[] | ReactNode; title: string }) => {
const drawer = useRef<HTMLDivElement>(null)
const [isDrawerActive, setDrawerActive] = useState(true)
const [isDrawerActive, setDrawerActive] = useState(false)

return (
<StyledGridItem colSpan={{ xxs: 12 }}>
Expand Down

0 comments on commit 555352d

Please sign in to comment.