Skip to content

Commit

Permalink
fix(app): subtler merge conflicts (#13069)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 authored Jul 10, 2023
1 parent ce24501 commit b41f276
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/organisms/PipetteWizardFlows/AttachProbe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
SPACING,
RESPONSIVENESS,
} from '@opentrons/components'
import { NINETY_SIX_CHANNEL, LEFT, MotorAxis } from '@opentrons/shared-data'
import { NINETY_SIX_CHANNEL, LEFT, MotorAxes } from '@opentrons/shared-data'
import { StyledText } from '../../atoms/text'
import { CalibrationErrorModal } from './CalibrationErrorModal'
import { GenericWizardTile } from '../../molecules/GenericWizardTile'
Expand Down Expand Up @@ -55,7 +55,7 @@ export const AttachProbe = (props: AttachProbeProps): JSX.Element | null => {
const is8Channel = attachedPipettes[mount]?.data.channels === 8
const is96Channel = attachedPipettes[mount]?.data.channels === 96
const calSlotNum = 'C2'
const axes: MotorAxis = mount === LEFT ? ['leftZ'] : ['rightZ']
const axes: MotorAxes = mount === LEFT ? ['leftZ'] : ['rightZ']

if (pipetteId == null) return null
const handleOnClick = (): void => {
Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/PipetteWizardFlows/Results.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const Results = (props: ResultsProps): JSX.Element => {
flowType === FLOWS.ATTACH &&
currentStepIndex !== totalStepCount
) {
const axes: MotorAxis =
const axes: MotorAxes =
mount === LEFT ? ['leftPlunger'] : ['rightPlunger']
chainRunCommands(
[
Expand Down

0 comments on commit b41f276

Please sign in to comment.