Skip to content

Commit 9ec5df9

Browse files
committed
format
1 parent af13f7d commit 9ec5df9

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

app/src/organisms/ErrorRecoveryFlows/shared/StackerReengageLatch.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ export function StackerReengageLatch(props: RecoveryContentProps): JSX.Element {
1212
const { t } = useTranslation('error_recovery')
1313

1414
const { routeUpdateActions, recoveryCommands } = props
15-
const {
16-
proceedNextStep,
17-
goBackPrevStep,
18-
} = routeUpdateActions
15+
const { proceedNextStep, goBackPrevStep } = routeUpdateActions
1916
const { closeLabwareLatch } = recoveryCommands
2017

2118
const primaryOnClick = (): void => {
22-
void closeLabwareLatch()
23-
.then(() => { void proceedNextStep() })
19+
void closeLabwareLatch().then(() => {
20+
void proceedNextStep()
21+
})
2422
}
2523

2624
return (

app/src/pages/Desktop/Protocols/ProtocolPreview/preview.module.css

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,13 @@
8383
position: relative;
8484
height: var(--spacing-4);
8585
border-radius: var(--border-radius-2);
86-
background:
87-
linear-gradient(
88-
to right,
89-
var(--blue-50) 0%,
90-
var(--blue-50) var(--progress, 0%),
91-
#ccc var(--progress, 0%),
92-
#ccc 100%
93-
);
86+
background: linear-gradient(
87+
to right,
88+
var(--blue-50) 0%,
89+
var(--blue-50) var(--progress, 0%),
90+
#ccc var(--progress, 0%),
91+
#ccc 100%
92+
);
9493
}
9594

9695
/* Hide thumb initially */
@@ -151,10 +150,9 @@
151150
}
152151

153152
.command_step_groups {
154-
height:
155-
calc(
156-
100vh - 248px
157-
); /* 248px is height of the controls container + timeline header */
153+
height: calc(
154+
100vh - 248px
155+
); /* 248px is height of the controls container + timeline header */
158156

159157
overflow-y: scroll;
160158
}

0 commit comments

Comments
 (0)