From c4c5b6289e73c7a06626304cb68392c1c67c1eb6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 5 Jun 2022 11:46:43 +0200 Subject: [PATCH] fix: Gap and grammar in Notification settings --- app/scenes/Settings/Notifications.tsx | 9 +-------- shared/i18n/locales/en_US/translation.json | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/app/scenes/Settings/Notifications.tsx b/app/scenes/Settings/Notifications.tsx index c956cfc8d..3aa155e07 100644 --- a/app/scenes/Settings/Notifications.tsx +++ b/app/scenes/Settings/Notifications.tsx @@ -44,15 +44,12 @@ function Notifications() { "Receive a notification whenever a new collection is created" ), }, - { - separator: true, - }, { visible: isCloudHosted, event: "emails.onboarding", title: t("Getting started"), description: t( - "Tips on getting started with Outline`s features and functionality" + "Tips on getting started with Outline’s features and functionality" ), }, { @@ -121,10 +118,6 @@ function Notifications() {

{t("Notifications")}

{options.map((option) => { - if (option.separator || !option.event) { - return
; - } - const setting = notificationSettings.getByEvent(option.event); return ( diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json index 2140fea83..c616bfd45 100644 --- a/shared/i18n/locales/en_US/translation.json +++ b/shared/i18n/locales/en_US/translation.json @@ -621,7 +621,7 @@ "Collection created": "Collection created", "Receive a notification whenever a new collection is created": "Receive a notification whenever a new collection is created", "Getting started": "Getting started", - "Tips on getting started with Outline`s features and functionality": "Tips on getting started with Outline`s features and functionality", + "Tips on getting started with Outline’s features and functionality": "Tips on getting started with Outline’s features and functionality", "New features": "New features", "Receive an email when new features of note are added": "Receive an email when new features of note are added", "Notifications saved": "Notifications saved",