Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri committed Oct 18, 2024
1 parent aaef16b commit 98ce3a7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
24 changes: 12 additions & 12 deletions app/src/organisms/Desktop/Devices/ChangePipette/InstructionStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ export function InstructionStep(props: Props): JSX.Element {

const display =
displayCategory === 'GEN2'
? new URL(
`../../../../assets/images/change-pip/${direction}-${String(
mount
)}-${channelsKey}-GEN2-${diagram}@3x.png`,
import.meta.url
).href
: new URL(
`../../../../assets/images/change-pip/${direction}-${String(
mount
)}-${channelsKey}-${diagram}@3x.png`,
import.meta.url
).href
? new URL(
`../../../../assets/images/change-pip/${direction}-${String(
mount
)}-${channelsKey}-GEN2-${diagram}@3x.png`,
import.meta.url
).href
: new URL(
`../../../../assets/images/change-pip/${direction}-${String(
mount
)}-${channelsKey}-${diagram}@3x.png`,
import.meta.url
).href

return (
<Flex justifyContent={JUSTIFY_SPACE_EVENLY}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ export function LevelingVideo(props: {
loop={true}
controls={true}
>
<source
src={video}
/>
<source src={video} />
</video>
)
}
Expand Down

0 comments on commit 98ce3a7

Please sign in to comment.