Skip to content

Commit

Permalink
fix: add single quotes to env variables and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoa committed Oct 13, 2022
1 parent 9e2ee48 commit 5cd5bdd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ FAVICON_URL=''
ENABLE_LEARNER_RECORD_MFE=''
LEARNER_RECORD_MFE_BASE_URL=''
COLLECT_YEAR_OF_BIRTH=true
APP_ID=
MFE_CONFIG_API_URL=
APP_ID=''
MFE_CONFIG_API_URL=''
4 changes: 2 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico
ENABLE_LEARNER_RECORD_MFE=''
LEARNER_RECORD_MFE_BASE_URL='http://localhost:1990'
COLLECT_YEAR_OF_BIRTH=true
APP_ID=
MFE_CONFIG_API_URL=
APP_ID=''
MFE_CONFIG_API_URL=''
4 changes: 2 additions & 2 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico
ENABLE_LEARNER_RECORD_MFE=''
LEARNER_RECORD_MFE_BASE_URL='http://localhost:1990'
COLLECT_YEAR_OF_BIRTH=true
APP_ID=
MFE_CONFIG_API_URL=
APP_ID=''
MFE_CONFIG_API_URL=''
2 changes: 1 addition & 1 deletion src/head/Head.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Head from './Head';

describe('Head', () => {
const props = {};
it('should match render title tag and fivicon with the site configuration values', () => {
it('should match render title tag and favicon with the site configuration values', () => {
mount(<IntlProvider locale="en"><Head {...props} /></IntlProvider>);
const helmet = Helmet.peek();
expect(helmet.title).toEqual(`Profile | ${getConfig().SITE_NAME}`);
Expand Down

0 comments on commit 5cd5bdd

Please sign in to comment.