Skip to content

Commit

Permalink
Make drawer collapsed initially
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed Jun 3, 2024
1 parent 5ad4851 commit 1cbf8c6
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 1cbf8c6

Please sign in to comment.