Skip to content

Commit 57442db

Browse files
committed
TCA-984 - fix enrolled modal btn label
1 parent 2d91f1e commit 57442db

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src-ts/tools/learn/certification-details/enrolled-modal/EnrolledModal.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ const EnrolledModal: FC<EnrolledModalProps> = (props: EnrolledModalProps) => {
3030
<h2 className='details'>
3131
You have successfully enrolled!
3232
</h2>
33-
<Button buttonStyle='outline' label='Close' onClick={props.onClose} />
33+
<Button
34+
buttonStyle='outline'
35+
label='Go to the certification details'
36+
onClick={props.onClose}
37+
/>
3438
</>
3539

3640
</BaseModal>

0 commit comments

Comments
 (0)