@@ -5,20 +5,14 @@ import merge from 'lodash/merge'
5
5
import omit from 'lodash/omit'
6
6
import reduce from 'lodash/reduce'
7
7
import {
8
- FLEX_ROBOT_TYPE ,
9
- OT2_ROBOT_TYPE ,
10
8
getLabwareDefaultEngageHeight ,
11
9
getLabwareDefURI ,
12
10
getModuleType ,
13
11
MAGNETIC_MODULE_TYPE ,
14
12
MAGNETIC_MODULE_V1 ,
15
13
THERMOCYCLER_MODULE_TYPE ,
16
- WASTE_CHUTE_ADDRESSABLE_AREAS ,
17
- MOVABLE_TRASH_ADDRESSABLE_AREAS ,
18
- WASTE_CHUTE_CUTOUT ,
19
14
} from '@opentrons/shared-data'
20
15
import { rootReducer as labwareDefsRootReducer } from '../../labware-defs'
21
- import { getCutoutIdByAddressableArea , uuid } from '../../utils'
22
16
import {
23
17
GRIPPER_LOCATION ,
24
18
INITIAL_DECK_SETUP_STEP_ID ,
@@ -33,7 +27,6 @@ import { PRESAVED_STEP_ID } from '../../steplist/types'
33
27
import { getLabwareIsCompatible } from '../../utils/labwareModuleCompatibility'
34
28
import { getLabwareOnModule } from '../../ui/modules/utils'
35
29
import { nestedCombineReducers } from './nestedCombineReducers'
36
- import { COLUMN_4_SLOTS } from '@opentrons/step-generation'
37
30
import {
38
31
_getPipetteEntitiesRootState ,
39
32
_getLabwareEntitiesRootState ,
@@ -44,7 +37,6 @@ import {
44
37
createPresavedStepForm ,
45
38
getDeckItemIdInSlot ,
46
39
getIdsInRange ,
47
- getUnoccupiedSlotForTrash ,
48
40
} from '../utils'
49
41
50
42
import type { Reducer } from 'redux'
@@ -57,11 +49,7 @@ import type {
57
49
LoadLabwareCreateCommand ,
58
50
LoadModuleCreateCommand ,
59
51
LoadPipetteCreateCommand ,
60
- MoveLabwareCreateCommand ,
61
- MoveToAddressableAreaCreateCommand ,
62
- MoveToAddressableAreaForDropTipCreateCommand ,
63
52
PipetteName ,
64
- AddressableAreaName ,
65
53
} from '@opentrons/shared-data'
66
54
import type { RootState as LabwareDefsRootState } from '../../labware-defs'
67
55
import type { LoadFileAction } from '../../load-file'
@@ -112,12 +100,12 @@ import type {
112
100
SelectMultipleStepsAction ,
113
101
} from '../../ui/steps/actions/types'
114
102
import type { Action } from '../../types'
103
+ import type { AdditionalEquipmentLocationUpdate } from '../../load-file/migration/utils/getAdditionalEquipmentLocationUpdate'
115
104
import type {
116
105
NormalizedLabware ,
117
106
NormalizedLabwareById ,
118
107
ModuleEntities ,
119
108
} from '../types'
120
- import { AdditionalEquipmentLocationUpdate } from '../../load-file/migration/utils/getAdditionalEquipmentLocationUpdate'
121
109
122
110
type FormState = FormData | null
123
111
const unsavedFormInitialState = null
0 commit comments