Skip to content

Commit 6b3ce11

Browse files
committed
fix: url in buttons
1 parent d9d572a commit 6b3ce11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/wizard/Steps.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function Step1({ onClickNext, step }) {
2323
</p>
2424
<WizardButton
2525
as="a"
26-
href={`/wizard?step=${step + 1}`}
26+
href={`/?step=${step + 1}`}
2727
onClick={onClickNext}
2828
icon={<ArrowIcon color="text-white" />}
2929
>
@@ -121,7 +121,7 @@ export function Step4({ onClickNext, step, data, setData }) {
121121
</div>
122122
<WizardButton
123123
as="a"
124-
href={`/wizard?step=${step + 1}`}
124+
href={`/?step=${step + 1}`}
125125
onClick={onClickNext}
126126
icon={<ArrowIcon color="text-white" />}
127127
>

0 commit comments

Comments
 (0)