From 9169b002ccd5b7fc7958afd68a21387d95eb0c2f Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Wed, 4 Oct 2023 11:04:33 +0100 Subject: [PATCH] fix: better words from the wordsmith (#17757) --- .../scenes/session-recordings/SessionRecordings.tsx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/frontend/src/scenes/session-recordings/SessionRecordings.tsx b/frontend/src/scenes/session-recordings/SessionRecordings.tsx index 7a1067e365f06..89da8f50a2a29 100644 --- a/frontend/src/scenes/session-recordings/SessionRecordings.tsx +++ b/frontend/src/scenes/session-recordings/SessionRecordings.tsx @@ -23,7 +23,6 @@ import { LemonTabs } from 'lib/lemon-ui/LemonTabs' import { sessionRecordingsListLogic } from 'scenes/session-recordings/playlist/sessionRecordingsListLogic' import { VersionCheckerBanner } from 'lib/components/VersionChecker/VersionCheckerBanner' import { authorizedUrlListLogic, AuthorizedUrlListType } from 'lib/components/AuthorizedUrlList/authorizedUrlListLogic' -import { pluralize } from 'lib/utils' export function SessionsRecordings(): JSX.Element { const { currentTeam } = useValues(teamLogic) @@ -154,14 +153,8 @@ export function SessionsRecordings(): JSX.Element { }} dismissKey={`session-recordings-authorized-domains-warning/${suggestions.join(',')}`} > - You have authorized domains configured for session recordings. Only recordings from these - domains will be allowed. -

- But you have {pluralize(suggestions.length, 'domain', 'domains', true)} that{' '} - {pluralize(suggestions.length, 'is', 'are', false)} not authorized which{' '} - {pluralize(suggestions.length, 'is', 'are', false)} trying to send recordings. You should - review your configuration. -

+ You have unauthorized domains trying to send recordings. To accept recordings from these + domains, please check your config. ) : null}