diff --git a/common/app/redux/reducer.js b/common/app/redux/reducer.js index be6bc7c78b..b0e14cb50a 100644 --- a/common/app/redux/reducer.js +++ b/common/app/redux/reducer.js @@ -2,7 +2,7 @@ import { handleActions } from 'redux-actions'; import types from './types'; const initialState = { - title: 'Learn To Code | Free Code Camp', + title: 'Learn To Code | freeCodeCamp', isSignInAttempted: false, user: '', lang: '', @@ -16,7 +16,7 @@ export default handleActions( { [types.updateTitle]: (state, { payload = 'Learn To Code' }) => ({ ...state, - title: payload + ' | Free Code Camp' + title: payload + ' | freeCodeCamp' }), [types.updateThisUser]: (state, { payload: user }) => ({ diff --git a/common/app/routes/settings/components/Settings.jsx b/common/app/routes/settings/components/Settings.jsx index b886f9f8e0..110e2edb5a 100644 --- a/common/app/routes/settings/components/Settings.jsx +++ b/common/app/routes/settings/components/Settings.jsx @@ -150,7 +150,7 @@ export class Settings extends React.Component { className='btn-link-social' href={ '/signout' } > - Sign me out of Free Code Camp + Sign me out of freeCodeCamp