Skip to content

Commit

Permalink
fix(protocol-designer): fix max temp tc block in cycle and step (#17282)
Browse files Browse the repository at this point in the history
* fix(protocol-designer): fix max temp tc block in cycle and step
  • Loading branch information
koji authored Jan 15, 2025
1 parent b2b7af2 commit a133e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ export function ThermocyclerCycle(props: ThermocyclerCycleProps): JSX.Element {
cycleStepId,
'temp',
maskToFloat(e.target.value),
temperatureRangeFieldValue(4, 96)
temperatureRangeFieldValue(4, 99)
)
}}
onBlur={() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export function ThermocyclerStep(props: ThermocyclerStepProps): JSX.Element {
handleValueUpdate(
'temp',
maskToFloat(e.target.value),
temperatureRangeFieldValue(4, 96)
temperatureRangeFieldValue(4, 99)
)
}}
onBlur={() => {
Expand Down

0 comments on commit a133e62

Please sign in to comment.