Skip to content

Commit

Permalink
chore(CreateTearsheet): pass props to story (#3866)
Browse files Browse the repository at this point in the history
  • Loading branch information
elycheea authored Nov 29, 2023
1 parent e6fa105 commit 4c2ffeb
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export const MultiStepTearsheet = ({
nextButtonText,
submitButtonText,
title,
...rest
}) => {
const [simulatedDelay] = useState(750);
const [open, setOpen] = useState(false);
Expand Down Expand Up @@ -112,6 +113,7 @@ export const MultiStepTearsheet = ({
})
}
firstFocusElement={firstFocusElement}
{...rest}
>
<CreateTearsheetStep
onNext={() => {
Expand Down

0 comments on commit 4c2ffeb

Please sign in to comment.