Skip to content

Commit 6a1d2c2

Browse files
feat: converted notification redux structure to context API (#598)
* feat: converted notification redux structure to context API * fix: fixed more notification show button issue * fix: fixed naming and restructure issue * fix: renamed component * refactor: rmeoved alt attribute from button * fix: fixed disable next line lint issue * fix: fixed UI placement issue * test: fix test cases * fix: refactor useref code * refactor: refactor learningHeader component * fix: fix test case of learningheader * fix: refactor changes
1 parent ff47031 commit 6a1d2c2

40 files changed

Lines changed: 2435 additions & 314 deletions

.env.development

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ LOGO_TRADEMARK_URL=https://edx-cdn.org/v3/prod/logo-trademark.svg
2121
LOGO_WHITE_URL=https://edx-cdn.org/v3/prod/logo-white.svg
2222
FAVICON_URL=https://edx-cdn.org/v3/prod/favicon.ico
2323
NOTIFICATION_FEEDBACK_URL=''
24+
CAREERS_URL=''

.env.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ LOGO_TRADEMARK_URL=https://edx-cdn.org/v3/prod/logo-trademark.svg
2121
LOGO_WHITE_URL=https://edx-cdn.org/v3/prod/logo-white.svg
2222
FAVICON_URL=https://edx-cdn.org/v3/prod/favicon.ico
2323
NOTIFICATION_FEEDBACK_URL=''
24+
CAREERS_URL=''

.eslintrc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// eslint-disable-next-line import/no-extraneous-dependencies
22
const { createConfig } = require('@openedx/frontend-build');
33

4-
module.exports = createConfig('eslint');
4+
module.exports = createConfig('eslint', {
5+
globals: {
6+
lightningjs: true,
7+
},
8+
});

0 commit comments

Comments
 (0)