File tree Expand file tree Collapse file tree 2 files changed +14
-18
lines changed
organisms/ErrorRecoveryFlows/shared
pages/Desktop/Protocols/ProtocolPreview Expand file tree Collapse file tree 2 files changed +14
-18
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,13 @@ export function StackerReengageLatch(props: RecoveryContentProps): JSX.Element {
12
12
const { t } = useTranslation ( 'error_recovery' )
13
13
14
14
const { routeUpdateActions, recoveryCommands } = props
15
- const {
16
- proceedNextStep,
17
- goBackPrevStep,
18
- } = routeUpdateActions
15
+ const { proceedNextStep, goBackPrevStep } = routeUpdateActions
19
16
const { closeLabwareLatch } = recoveryCommands
20
17
21
18
const primaryOnClick = ( ) : void => {
22
- void closeLabwareLatch ( )
23
- . then ( ( ) => { void proceedNextStep ( ) } )
19
+ void closeLabwareLatch ( ) . then ( ( ) => {
20
+ void proceedNextStep ( )
21
+ } )
24
22
}
25
23
26
24
return (
Original file line number Diff line number Diff line change 83
83
position : relative;
84
84
height : var (--spacing-4 );
85
85
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
+ );
94
93
}
95
94
96
95
/* Hide thumb initially */
151
150
}
152
151
153
152
.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 */
158
156
159
157
overflow-y : scroll;
160
158
}
You can’t perform that action at this time.
0 commit comments