Skip to content

Commit e4dffb9

Browse files
committed
Merge branch 'PROD-2565_start-course-button-label' into dev
2 parents 5c98f49 + 4bcd66e commit e4dffb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-ts/tools/learn/course-details/course-curriculum/curriculum-summary/CurriculumSummary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const CurriculumSummary: FC<CurriculumSummaryProps> = (props: CurriculumSummaryP
2121
const inProgress: boolean|undefined = props.inProgress
2222
const completed: boolean|undefined = props.completed
2323

24-
const mainBtnLabel: string = !props.isLoggedIn ? 'Log in' : (
24+
const mainBtnLabel: string = !props.isLoggedIn ? 'Log in & start' : (
2525
completed ? 'Review' : (
2626
inProgress ? 'Resume' : 'Start Course'
2727
)

0 commit comments

Comments
 (0)