fix: remove formik values

This commit is contained in:
José Oliveira 2022-01-17 21:27:29 +00:00
parent f9ec06c965
commit 586c3f12cd

View file

@ -147,7 +147,6 @@ const Wizard = ({
onSubmit={onContinue}
initialValues={stepOptions.initialValues}
validationSchema={stepOptions.schema}>
{({ values }) => (
<Form className={classes.form}>
<stepOptions.Component
selectedValues={selectedValues}
@ -161,7 +160,6 @@ const Wizard = ({
</Button>
</div>
</Form>
)}
</Formik>
</Modal>
</>