File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ export const ContinuePage = (props: Props) => (
31
31
</ div >
32
32
< Card >
33
33
< div >
34
- < h2 > { props . tutorial . version . summary . title } </ h2 >
35
- < p > { props . tutorial . version . summary . description } </ p >
34
+ < h2 > { props . tutorial . summary . title } </ h2 >
35
+ < p > { props . tutorial . summary . description } </ p >
36
36
< Button onClick = { props . onContinue } > Resume</ Button >
37
37
</ div >
38
38
</ Card >
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ const TutorialList = (props: Props) => {
23
23
< TutorialItem
24
24
key = { tutorial . id }
25
25
onSelect = { ( ) => onSelect ( tutorial ) }
26
- title = { tutorial . version . summary . title || '' }
27
- description = { tutorial . version . summary . description || '' }
26
+ title = { tutorial . summary . title || '' }
27
+ description = { tutorial . summary . description || '' }
28
28
/>
29
29
) ) }
30
30
</ div >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const Overview = (props: PageProps) => {
55
55
} ,
56
56
} )
57
57
58
- const { title, description } = data . tutorial . version . summary
58
+ const { title, description } = data . tutorial . summary
59
59
const { levels } = data . tutorial . version . data
60
60
61
61
return < OverviewPage title = { title } description = { description } levels = { levels } onNext = { onNext } />
You can’t perform that action at this time.
0 commit comments