diff --git a/src/notification-preferences/NotificationPreferenceRow.jsx b/src/notification-preferences/NotificationPreferenceRow.jsx index 8541a9e..e359b30 100644 --- a/src/notification-preferences/NotificationPreferenceRow.jsx +++ b/src/notification-preferences/NotificationPreferenceRow.jsx @@ -39,8 +39,12 @@ const NotificationPreferenceRow = ({ appId, preferenceName }) => { )); // eslint-disable-next-line react-hooks/exhaustive-deps }, [appId, preferenceName]); - const tooltipId = `${preferenceName}-tooltip`; + + if (appId === 'ora' && preferenceName === 'core') { + return null; + } + return (
diff --git a/src/notification-preferences/messages.js b/src/notification-preferences/messages.js index 00ae57c..c6da0a1 100644 --- a/src/notification-preferences/messages.js +++ b/src/notification-preferences/messages.js @@ -13,7 +13,7 @@ const messages = defineMessages({ discussion {Discussions} coursework {Course Work} updates {Updates} - ora {ORA} + ora {Grading} other {{key}} }`, description: 'Display text for Notification Types',