Skip to content

Commit

Permalink
fix isThermocyclerProfile boolean logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Nov 21, 2024
1 parent a38726e commit bb528f1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ export function StepOverflowMenu(props: StepOverflowMenuProps): JSX.Element {
const isPipetteStep =
savedStepFormData.stepType === 'moveLiquid' ||
savedStepFormData.stepType === 'mix'
const isThermocyclerProfile = savedStepFormData.stepType === 'thermocycler'
const isThermocyclerProfile =
savedStepFormData.stepType === 'thermocycler' &&
savedStepFormData.thermocyclerFormType === 'thermocyclerProfile'

const duplicateStep = (
stepId: StepIdType
Expand Down

0 comments on commit bb528f1

Please sign in to comment.