Remove IntermediateStep model

The IntermediateStep model was deleted as it is no longer used or required in the codebase. This simplifies the project structure and removes unnecessary dependencies.
This commit is contained in:
geoffsee
2025-05-27 14:49:22 -04:00
committed by Geoff Seemueller
parent 335e8eff11
commit c99068ecb4

View File

@@ -1,7 +0,0 @@
// models/IntermediateStep.ts
import { types } from "mobx-state-tree";
export default types.model("IntermediateStep", {
kind: types.string,
data: types.frozen(), // Allows storing any JSON-serializable data
});