Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Feb 13, 2024
1 parent b510260 commit 129388a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/src/organisms/FirmwareUpdateModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
Icon,
RESPONSIVENESS,
JUSTIFY_CENTER,
BORDERS,
COLORS,
} from '@opentrons/components'
import {
Expand Down Expand Up @@ -107,7 +106,6 @@ export const FirmwareUpdateModal = (
}, [])
const { data: updateData } = useSubsystemUpdateQuery(updateId)
const status = updateData?.data.updateStatus
const percentComplete = updateData?.data.updateProgress ?? 0

React.useEffect(() => {
if ((status != null || updateNeeded) && firmwareText !== description) {
Expand All @@ -134,7 +132,7 @@ export const FirmwareUpdateModal = (

return (
<Flex css={MODAL_STYLE}>
{status != null || updateNeeded || firmwareText.length == 0 ? (
{status != null || updateNeeded || firmwareText.length === 0 ? (
<Icon
name="ot-spinner"
aria-label="spinner"
Expand Down

0 comments on commit 129388a

Please sign in to comment.