Skip to content

Commit 49659cd

Browse files
committed
cleanup
1 parent df0db50 commit 49659cd

File tree

1 file changed

+0
-7
lines changed
  • packages/compass-data-modeling/src/store

1 file changed

+0
-7
lines changed

packages/compass-data-modeling/src/store/diagram.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export enum DiagramActionTypes {
6161
UNDO_EDIT = 'data-modeling/diagram/UNDO_EDIT',
6262
REDO_EDIT = 'data-modeling/diagram/REDO_EDIT',
6363
COLLECTION_SELECTED = 'data-modeling/diagram/COLLECTION_SELECTED',
64-
DRAFT_COLLECTION_NAMED = 'data-modeling/diagram/DRAFT_COLLECTION_NAMED',
6564
RELATIONSHIP_SELECTED = 'data-modeling/diagram/RELATIONSHIP_SELECTED',
6665
DIAGRAM_BACKGROUND_SELECTED = 'data-modeling/diagram/DIAGRAM_BACKGROUND_SELECTED',
6766
}
@@ -105,11 +104,6 @@ export type CollectionSelectedAction = {
105104
namespace: string;
106105
};
107106

108-
export type DraftCollectionNamedAction = {
109-
type: DiagramActionTypes.DRAFT_COLLECTION_NAMED;
110-
namespace: string;
111-
};
112-
113107
export type RelationSelectedAction = {
114108
type: DiagramActionTypes.RELATIONSHIP_SELECTED;
115109
relationshipId: string;
@@ -128,7 +122,6 @@ export type DiagramActions =
128122
| UndoEditAction
129123
| RedoEditAction
130124
| CollectionSelectedAction
131-
| DraftCollectionNamedAction
132125
| RelationSelectedAction
133126
| DiagramBackgroundSelectedAction;
134127

0 commit comments

Comments
 (0)