Skip to content

Commit

Permalink
resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Dec 19, 2024
1 parent 820df7b commit 016020b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion protocol-designer/src/ui/labware/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
import {
FLEX_ROBOT_TYPE,
OT2_ROBOT_TYPE,
RobotType,
getIsTiprack,
getLabwareDisplayName,
} from '@opentrons/shared-data'
Expand All @@ -21,6 +20,7 @@ import type {
AdditionalEquipmentEntity,
} from '@opentrons/step-generation'
import type { DropdownOption } from '@opentrons/components'
import type { RobotType } from '@opentrons/shared-data'
import type { Selector } from '../../types'
import type {
AllTemporalPropertiesForTimelineFrame,
Expand Down
4 changes: 2 additions & 2 deletions protocol-designer/src/ui/labware/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { getHasWasteChute } from '@opentrons/step-generation'
import { WASTE_CHUTE_DISPLAY_NAME } from '@opentrons/components'
import {
FLEX_ROBOT_TYPE,
RobotType,
THERMOCYCLER_MODULE_TYPE,
} from '@opentrons/shared-data'
import type { RobotType } from '@opentrons/shared-data'
import type { InitialDeckSetup, SavedStepFormState } from '../../step-forms'

function resolveSlotLocation(
Expand Down Expand Up @@ -65,7 +65,7 @@ export function getLabwareLatestSlot(
return resolveSlotLocation(
modules,
labware,
moveLabwareStep.newLocation,
moveLabwareStep.newLocation as string,
robotType
)
} else if (moveLabwareStep == null) {
Expand Down

0 comments on commit 016020b

Please sign in to comment.