diff --git a/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx b/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx
index fa356cf753a2..6c6144048664 100644
--- a/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx
+++ b/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx
@@ -19,6 +19,7 @@ import {
NINETY_SIX_CHANNEL,
PipetteName,
SINGLE_MOUNT_PIPETTES,
+ LoadedPipette,
} from '@opentrons/shared-data'
import { SmallButton } from '../../atoms/buttons'
@@ -49,6 +50,7 @@ interface ProtocolInstrumentMountItemProps {
attachedInstrument: InstrumentData | null
speccedName: PipetteName | GripperModel
instrumentsRefetch?: () => void
+ pipetteInfo?: LoadedPipette[]
}
export function ProtocolInstrumentMountItem(
props: ProtocolInstrumentMountItemProps
@@ -172,6 +174,7 @@ export function ProtocolInstrumentMountItem(
closeFlow={() => setShowPipetteWizardFlow(false)}
selectedPipette={selectedPipette}
mount={mount as Mount}
+ pipetteInfo={props.pipetteInfo}
onComplete={props.instrumentsRefetch}
/>
) : null}
diff --git a/app/src/organisms/PipetteWizardFlows/MountingPlate.tsx b/app/src/organisms/PipetteWizardFlows/MountingPlate.tsx
index a4bf6ed8d2f4..51347bd18f41 100644
--- a/app/src/organisms/PipetteWizardFlows/MountingPlate.tsx
+++ b/app/src/organisms/PipetteWizardFlows/MountingPlate.tsx
@@ -5,6 +5,7 @@ import { COLORS, SPACING } from '@opentrons/components'
import { StyledText } from '../../atoms/text'
import { SimpleWizardBody } from '../../molecules/SimpleWizardBody'
import { GenericWizardTile } from '../../molecules/GenericWizardTile'
+import { InProgressModal } from '../../molecules/InProgressModal/InProgressModal'
import { getPipetteAnimations96 } from './utils'
import { BODY_STYLE, FLOWS, SECTIONS } from './constants'
import type { PipetteWizardStepProps } from './types'
@@ -13,6 +14,7 @@ export const MountingPlate = (
props: PipetteWizardStepProps
): JSX.Element | null => {
const {
+ isRobotMoving,
goBack,
proceed,
flowType,
@@ -46,6 +48,7 @@ export const MountingPlate = (
})
}
+ if (isRobotMoving) return
return errorMessage ? (
)
})}