Skip to content

Commit

Permalink
fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 committed May 2, 2024
1 parent f4ca1c2 commit 2ed6941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/src/assets/localization/en/quick_transfer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"left_mount": "Left Mount",
"both_mounts": "Left + Right Mount",
"dispense_volume": "Dispense volume per well (µL)",
"exit_quick_transfer": "Exit quick transfer?",
"lose_all_progress": "You will lose all progress on this quick transfer.",
"right_mount": "Right Mount",
"reservoir": "Reservoirs",
"select_attached_pipette": "Select attached pipette",
Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/QuickTransferFlow/SelectDestLabware.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function SelectDestLabware(
'wellPlate',
'reservoir',
]
if (state.pipette.channels === 1) {
if (state.pipette?.channels === 1) {
labwareDisplayCategoryFilters.push('tubeRack')
}
const [selectedCategory, setSelectedCategory] = React.useState<LabwareFilter>(
Expand Down

0 comments on commit 2ed6941

Please sign in to comment.