From c99068ecb4e41dccbb36dc0e3d0fb07d61e675a2 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Tue, 27 May 2025 14:49:22 -0400 Subject: [PATCH] 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. --- src/models/IntermediateStep.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/models/IntermediateStep.ts diff --git a/src/models/IntermediateStep.ts b/src/models/IntermediateStep.ts deleted file mode 100644 index 52637b7..0000000 --- a/src/models/IntermediateStep.ts +++ /dev/null @@ -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 -});