From c0a2c18ec4d42b33ac2aa92c35d28499c7439958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Mon, 10 Jul 2023 15:58:46 +0200 Subject: [PATCH] Fix E2EE disclaimer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/E2EEBanner.tsx | 3 ++- src/E2EELock.tsx | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/E2EEBanner.tsx b/src/E2EEBanner.tsx index 08d1ffbb..957813e3 100644 --- a/src/E2EEBanner.tsx +++ b/src/E2EEBanner.tsx @@ -26,7 +26,8 @@ export const E2EEBanner = () => {
- Element Call is temporarily not encrypted while we test scalability. + Element Call is temporarily not end-to-end encrypted while we test + scalability.
diff --git a/src/E2EELock.tsx b/src/E2EELock.tsx index 3832e7f0..d032b036 100644 --- a/src/E2EELock.tsx +++ b/src/E2EELock.tsx @@ -27,7 +27,9 @@ export const E2EELock = () => { const { t } = useTranslation(); const tooltip = useCallback( () => - t("Element Call is temporarily not encrypted while we test scalability."), + t( + "Element Call is temporarily not end-to-end encrypted while we test scalability." + ), [t] );