Skip to content

Commit 1c9e39b

Browse files
committed
update summary changes
1 parent 4dddbf6 commit 1c9e39b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

web-app/src/containers/Continue/index.tsx

+2-2
Original file line numberDiff line numberDiff 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>

web-app/src/containers/New/TutorialList/index.tsx

+2-2
Original file line numberDiff line numberDiff 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>

web-app/src/containers/Overview/index.tsx

+1-1
Original file line numberDiff line numberDiff 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} />

0 commit comments

Comments
 (0)