We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05209eb commit 3523007Copy full SHA for 3523007
web-app/src/containers/Tutorial/containers/Review.tsx
@@ -93,16 +93,19 @@ const ReviewPage = (props: Props) => {
93
return show(step.status) ? (
94
<div key={step.id}>
95
{adminMode && (
96
- <div css={styles.adminNav}>
97
- <Button
98
- type="normal"
99
- warning
100
- onClick={() => props.onResetToPosition({ levelId: level.id, stepId: step.id })}
101
- >
102
- {step.id}
103
- <Icon type="refresh" />
104
- </Button>
105
- </div>
+ <>
+ <div css={styles.adminNav}>
+ <Button
+ type="normal"
+ warning
+ onClick={() => props.onResetToPosition({ levelId: level.id, stepId: step.id })}
+ >
+ {step.id}
+ <Icon type="refresh" />
+ </Button>
106
+ </div>
107
+ <br />
108
+ </>
109
)}
110
<Step
111
key={step.id}
0 commit comments