make the steps editable

This commit is contained in:
Leon Serfaty G
2025-07-18 05:39:19 +00:00
parent 8e4af8e745
commit 99452b714f
+5 -4
View File
@@ -133,15 +133,16 @@ export default function FlowFormPage({ params }: FlowFormPageProps) {
{getError('description') && <p className="text-sm text-destructive">{getError('description')}</p>} {getError('description') && <p className="text-sm text-destructive">{getError('description')}</p>}
</div> </div>
</CardContent> </CardContent>
<CardFooter>
<SubmitButton isNew={isNew} />
</CardFooter>
</Card> </Card>
</form>
{!isNew && ( {!isNew && (
<FlowCanvas /> <FlowCanvas />
)} )}
<div className="flex justify-start">
<SubmitButton isNew={isNew} />
</div>
</form>
</div> </div>
); );
} }