Skip to content

Commit

Permalink
fix(app): fix module calibration selection slot issue (#14168)
Browse files Browse the repository at this point in the history
* fix(app): fix module calibration selection slot issue
  • Loading branch information
koji authored Dec 11, 2023
1 parent 018d7bc commit 3a93fc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/organisms/ModuleWizardFlows/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export const SCREWDRIVER_LOADNAME = 'hex_screwdriver' as const
export const FLEX_SLOT_NAMES_BY_MOD_TYPE: {
[moduleType in ModuleType]?: string[]
} = {
[HEATERSHAKER_MODULE_TYPE]: ['D1', 'C1', 'B1', 'A1', 'D3', 'C3', 'B3'],
[TEMPERATURE_MODULE_TYPE]: ['D1', 'C1', 'B1', 'A1', 'D3', 'C3', 'B3'],
[HEATERSHAKER_MODULE_TYPE]: ['D1', 'C1', 'B1', 'A1', 'D3', 'C3', 'B3', 'A3'],
[TEMPERATURE_MODULE_TYPE]: ['D1', 'C1', 'B1', 'A1', 'D3', 'C3', 'B3', 'A3'],
[THERMOCYCLER_MODULE_TYPE]: ['B1'],
}
export const LEFT_SLOTS: string[] = ['A1', 'B1', 'C1', 'D1']

0 comments on commit 3a93fc4

Please sign in to comment.