Skip to content

Commit 19d92ec

Browse files
authored
fix(notifications): Adding Daily option to notification settings dropdown. This should be the last piece needed to roll out the Daily frequency option that was recently added to the backend (#1957)
1 parent 1f36c58 commit 19d92ec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

components/EditProfilePage/ProfileSettingsModal.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,9 @@ export default function ProfileSettingsModal({
146146
variant="outline-secondary"
147147
/>
148148
<Dropdown.Menu className={`col-12 bg-white `}>
149+
<Dropdown.Item onClick={() => setNotifications("Daily")}>
150+
{t("email.daily")}
151+
</Dropdown.Item>
149152
<Dropdown.Item onClick={() => setNotifications("Weekly")}>
150153
{t("email.weekly")}
151154
</Dropdown.Item>

0 commit comments

Comments
 (0)