fix: punctuation grammar of welcome message (#37335)
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user