Skip to content

Commit 3c00618

Browse files
committed
fix: import
1 parent 8969510 commit 3c00618

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

.env

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ HOTJAR_VERSION='6'
3737
HOTJAR_DEBUG=''
3838
ACCOUNT_SETTINGS_URL=''
3939
ACCOUNT_PROFILE_URL=''
40-
ENABLE_NOTICES=''
4140
CAREER_LINK_URL=''
4241
ENABLE_EDX_PERSONAL_DASHBOARD=false
4342
ENABLE_PROGRAMS=false

.env.development

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ HOTJAR_VERSION='6'
4343
HOTJAR_DEBUG=''
4444
ACCOUNT_SETTINGS_URL='http://localhost:1997'
4545
ACCOUNT_PROFILE_URL='http://localhost:1995'
46-
ENABLE_NOTICES=''
4746
CAREER_LINK_URL=''
4847
ENABLE_EDX_PERSONAL_DASHBOARD=false
4948
ENABLE_PROGRAMS=false

.env.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ HOTJAR_VERSION='6'
4242
HOTJAR_DEBUG=''
4343
ACCOUNT_SETTINGS_URL='http://account-settings-url.test'
4444
ACCOUNT_PROFILE_URL='http://account-profile-url.test'
45-
ENABLE_NOTICES=''
4645
CAREER_LINK_URL=''
4746
ENABLE_EDX_PERSONAL_DASHBOARD=true
4847
ENABLE_PROGRAMS=false

example.env.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ module.exports = {
6767
NEW_RELIC_LICENSE_KEY: '',
6868
ACCOUNT_SETTINGS_URL: 'http://localhost:1997',
6969
ACCOUNT_PROFILE_URL: 'http://localhost:1995',
70-
ENABLE_NOTICES: '',
7170
CAREER_LINK_URL: '',
7271
EXPERIMENT_08_23_VAN_PAINTED_DOOR: true,
7372
};

src/config/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const configuration = {
1414
LEARNING_BASE_URL: process.env.LEARNING_BASE_URL,
1515
SESSION_COOKIE_DOMAIN: process.env.SESSION_COOKIE_DOMAIN || '',
1616
SUPPORT_URL: process.env.SUPPORT_URL || null,
17-
ENABLE_NOTICES: process.env.ENABLE_NOTICES || null,
1817
CAREER_LINK_URL: process.env.CAREER_LINK_URL || null,
1918
LOGO_URL: process.env.LOGO_URL,
2019
ENABLE_EDX_PERSONAL_DASHBOARD: process.env.ENABLE_EDX_PERSONAL_DASHBOARD === 'true',

src/test/app.test.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jest.unmock('reselect');
3939
jest.unmock('hooks');
4040

4141
jest.mock('plugin-slots/WidgetSidebarSlot', () => jest.fn(() => 'widget-sidebar'));
42-
jest.mock('components/', () => 'notices-wrapper');
4342

4443
jest.mock('@edx/frontend-platform', () => ({
4544
...jest.requireActual('@edx/frontend-platform'),

0 commit comments

Comments
 (0)