@betterstart/cli 0.1.59 → 0.1.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2771,7 +2771,7 @@ ${p7.fieldArraySetup}${p7.watchSetup}
|
|
|
2771
2771
|
|
|
2772
2772
|
return (
|
|
2773
2773
|
<Form {...form}>
|
|
2774
|
-
<form onSubmit={
|
|
2774
|
+
<form onSubmit={(e) => e.preventDefault()} className="space-y-8">
|
|
2775
2775
|
{/* Step header */}
|
|
2776
2776
|
<div>
|
|
2777
2777
|
<h3 className="text-lg font-semibold">{STEPS[currentStep].label}</h3>
|
|
@@ -2806,7 +2806,7 @@ ${p7.stepContentBlocks}
|
|
|
2806
2806
|
<ChevronRight className="ml-2 h-4 w-4" />
|
|
2807
2807
|
</Button>
|
|
2808
2808
|
) : (
|
|
2809
|
-
<Button type="
|
|
2809
|
+
<Button type="button" disabled={submitting} onClick={() => onSubmit(form.getValues())}>
|
|
2810
2810
|
{submitting ? 'Submitting...' : '${p7.submitText}'}
|
|
2811
2811
|
</Button>
|
|
2812
2812
|
)}
|