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 @@ -23,8 +23,8 @@ const TutorialList = (props: Props) => {
2323 < TutorialItem
2424 key = { tutorial . id }
2525 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 || '' }
2828 />
2929 ) ) }
3030 </ div >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const Overview = (props: PageProps) => {
5555 } ,
5656 } )
5757
58- const { title, description } = data . tutorial . version . summary
58+ const { title, description } = data . tutorial . summary
5959 const { levels } = data . tutorial . version . data
6060
6161 return < OverviewPage title = { title } description = { description } levels = { levels } onNext = { onNext } />
You can’t perform that action at this time.
0 commit comments