Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ import { WithErrorBoundary } from '../../../../common/components/ErrorHandling/W

const BasicStep = () => {
const { t } = useTranslation();
const { installDisconnected, setInstallDisconnected, moveNext, moveBack } =
useClusterWizardContext();
const { installDisconnected, setInstallDisconnected, moveNext } = useClusterWizardContext();

return (
<Formik
Expand All @@ -39,7 +38,7 @@ const BasicStep = () => {
>
<ClusterWizardStep
navigation={<ClusterWizardNavigation />}
footer={<ClusterWizardFooter onNext={moveNext} onBack={moveBack} />}
footer={<ClusterWizardFooter onNext={moveNext} />}
>
<WithErrorBoundary title="Failed to load Basic step">
<Grid hasGutter>
Expand Down
Loading