Fix save progress bug

This commit is contained in:
adilallo
2026-05-20 19:58:32 -06:00
parent 2f2b5d0dc2
commit 7ee6282c1a
14 changed files with 193 additions and 88 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { CreateFlowState, CreateFlowStep } from "../../app/(app)/create/types";
/** Snapshot for save-progress / draft transfer (includes optional resume step). */
export function buildCreateFlowDraftPayload(
state: CreateFlowState,
currentStep?: CreateFlowStep | null,
): CreateFlowState {
return {
...state,
...(currentStep ? { currentStep } : {}),
};
}