Skip to content

Commit

Permalink
LF-4165 Pass history to form content in MultiStepForm
Browse files Browse the repository at this point in the history
  • Loading branch information
SayakaOno committed Aug 22, 2024
1 parent 038d689 commit 7bdea5f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/webapp/src/components/Form/MultiStepForm/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ export const MultiStepForm = ({
{...props}
>
<FormProvider {...form}>
<FormContent onGoForward={onGoForward} form={form} formResultData={formResultData} />
<FormContent
onGoForward={onGoForward}
form={form}
formResultData={formResultData}
history={history}
/>
</FormProvider>
</Component>
);
Expand Down

0 comments on commit 7bdea5f

Please sign in to comment.