fix: punctuation grammar of welcome message (#37335)

This commit is contained in:
Joseph Ting
2019-10-16 20:26:37 +09:00
committed by mrugesh
parent 881b24a54c
commit 61b60a3f45

View File

@ -15,7 +15,9 @@ function Welcome({ name }) {
<Col sm={10} smOffset={1} xs={12}>
<Spacer />
<h1 className='text-center big-heading'>
{name ? 'Welcome back ' + name : 'Welcome to freeCodeCamp.org'}
{name
? 'Welcome back, ' + name + '.'
: 'Welcome to freeCodeCamp.org'}
</h1>
</Col>
</Row>