Skip to content

Commit

Permalink
🎓 Make drawer initially collapsed (#6365)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk authored Jun 3, 2024
1 parent cc48d35 commit c382667
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 c382667

Please sign in to comment.