make the steps editable

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