Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Aug 6, 2024
1 parent 5eb2c3f commit 5b3ac52
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ import {
DIRECTION_ROW,
Flex,
JUSTIFY_FLEX_END,
Link,
PrimaryButton,
SecondaryButton,
SPACING,
LegacyStyledText,
TEXT_ALIGN_CENTER,
TYPOGRAPHY,
} from '@opentrons/components'
import { LegacyModal } from '../../../molecules/LegacyModal'
Expand Down
2 changes: 1 addition & 1 deletion app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ export function ProtocolRunSetup({
setLiquidSetupConfirmed={(confirmed: boolean) => {
setLiquidSetupComplete(confirmed)
if (confirmed) {
setMissingSteps(missingSteps.filter(step => step != 'liquids'))
setMissingSteps(missingSteps.filter(step => step !== 'liquids'))
setExpandedStepKey(null)
}
}}
Expand Down

0 comments on commit 5b3ac52

Please sign in to comment.