File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 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) => (
3131 </ div >
3232 < Card >
3333 < 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 >
3636 < Button onClick = { props . onContinue } > Resume</ Button >
3737 </ div >
3838 </ Card >
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ const TutorialList = (props: Props) => {
2222 < TutorialItem
2323 key = { tutorial . id }
2424 onSelect = { ( ) => onSelect ( tutorial ) }
25- title = { tutorial . version . summary . title || '' }
26- description = { tutorial . version . summary . description || '' }
25+ title = { tutorial . summary . title || '' }
26+ description = { tutorial . summary . description || '' }
2727 />
2828 ) ) }
2929 </ div >
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const Overview = (props: PageProps) => {
5454 } ,
5555 } )
5656
57- const { title, description } = data . tutorial . version . summary
57+ const { title, description } = data . tutorial . summary
5858 const { levels } = data . tutorial . version . data
5959
6060 return < OverviewPage title = { title } description = { description } levels = { levels } onNext = { onNext } />
You can’t perform that action at this time.
0 commit comments