Skip to content

Commit

Permalink
linter adjustment in app
Browse files Browse the repository at this point in the history
  • Loading branch information
CaseyBatten committed Oct 10, 2024
1 parent ca66cab commit d0b95b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/organisms/LabwarePositionCheck/useLaunchLPC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { getLabwareDefinitionsFromCommands } from '/app/molecules/Command/utils/

import type { RobotType } from '@opentrons/shared-data'

const filtered_labware = ['opentrons_tough_pcr_auto_sealing_lid']
const filteredLabware = ['opentrons_tough_pcr_auto_sealing_lid']

export function useLaunchLPC(
runId: string,
Expand Down Expand Up @@ -64,7 +64,7 @@ export function useLaunchLPC(
getLabwareDefinitionsFromCommands(
mostRecentAnalysis?.commands ?? []
).map(def => {
if (!filtered_labware.includes(def.parameters.loadName))
if (!filteredLabware.includes(def.parameters.loadName))
createLabwareDefinition({
maintenanceRunId: maintenanceRun?.data?.id,
labwareDef: def,
Expand Down

0 comments on commit d0b95b8

Please sign in to comment.