Skip to content

Commit

Permalink
remove lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jerader committed Mar 19, 2024
1 parent 05576af commit e6f2260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ export const LabwareField = (props: FieldProps): JSX.Element => {
props.name === 'dispense_labware'
? [...options, ...disposalOptions]
: [...options]

return <StepFormDropdown {...props} options={allOptions} />
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const StepFormDropdown = (props: StepFormDropdownProps): JSX.Element => {
const availableOptionIds = options.map(opt => opt.value)
// @ts-expect-error (ce, 2021-06-21) unknown not assignable to string
const fieldValue = availableOptionIds.includes(value) ? String(value) : null

return (
<DropdownField
name={name}
Expand Down

0 comments on commit e6f2260

Please sign in to comment.