From 538d85b5dd4677716a888bb96e8e0531b439aecc Mon Sep 17 00:00:00 2001 From: Muhammad Adeel Tajamul <77053848+muhammadadeeltajamul@users.noreply.github.com> Date: Wed, 23 Oct 2024 13:28:58 +0500 Subject: [PATCH] feat: removed never from cadence options (#1142) --- .env.development | 2 +- src/notification-preferences/data/constants.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.env.development b/.env.development index ee578f76e..c3c003740 100644 --- a/.env.development +++ b/.env.development @@ -28,7 +28,7 @@ ENABLE_COPPA_COMPLIANCE='' ENABLE_ACCOUNT_DELETION='' ENABLE_DOB_UPDATE='' MARKETING_EMAILS_OPT_IN='' -SHOW_EMAIL_CHANNEL='' +SHOW_EMAIL_CHANNEL='true' APP_ID= MFE_CONFIG_API_URL= PASSWORD_RESET_SUPPORT_LINK='mailto:support@example.com' diff --git a/src/notification-preferences/data/constants.js b/src/notification-preferences/data/constants.js index a3a3a9e5b..29091ce52 100644 --- a/src/notification-preferences/data/constants.js +++ b/src/notification-preferences/data/constants.js @@ -1,7 +1,6 @@ const EMAIL_CADENCE = { DAILY: 'Daily', WEEKLY: 'Weekly', - NEVER: 'Never', }; export default EMAIL_CADENCE;