Skip to content

Commit

Permalink
fix filtering for labware on modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Nov 19, 2024
1 parent d9abbcb commit f631b83
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ export function LabwareTools(props: LabwareToolsProps): JSX.Element {
const labwareURI = getLabwareDefURI(labwareDef)
const loadName = labwareDef.parameters.loadName

return searchFilter(labwareDef.metadata.displayName) ? (
return searchFilter(labwareDef.metadata.displayName) &&
!getIsLabwareFiltered(labwareDef) ? (
<React.Fragment
key={`${index}_${category}_${loadName}`}
>
Expand Down

0 comments on commit f631b83

Please sign in to comment.