Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af1a24 commit a559c1fCopy full SHA for a559c1f
web-app/src/containers/Tutorial/LevelPage/Level/LevelStageSummary.tsx
@@ -1,6 +1,6 @@
1
import { Icon } from '@alifd/next'
2
import * as React from 'react'
3
-import * as T from 'typings/graphql'
+import * as G from 'typings/graphql'
4
5
import Markdown from '../../../../components/Markdown'
6
@@ -24,7 +24,7 @@ const styles = {
24
}
25
26
interface Props {
27
- stage: T.Stage
+ stage: G.Stage
28
onNext(): void
29
30
@@ -36,7 +36,6 @@ const LevelStageSummary = (props: Props) => {
36
<div style={styles.left}>
37
<Markdown>{stage.text || ''}</Markdown>
38
</div>
39
- <div style={styles.right}>{active && <Icon type="arrow-right" style={styles.continueIcon} />}</div>
40
41
)
42
0 commit comments