From 7965b4e44a76028c7029b76f84011cbcf46c517b Mon Sep 17 00:00:00 2001 From: Brice-W Date: Tue, 3 Aug 2021 15:17:38 +1000 Subject: [PATCH] . is already present in the i18n label --- ts/components/conversation/GroupNotification.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/conversation/GroupNotification.tsx b/ts/components/conversation/GroupNotification.tsx index 09f1395cb..0e7a33cc0 100644 --- a/ts/components/conversation/GroupNotification.tsx +++ b/ts/components/conversation/GroupNotification.tsx @@ -48,7 +48,7 @@ function renderChange(change: PropsForGroupUpdateType) { const people = isTypeWithContact(change) ? getPeople(change) : []; switch (change.type) { case 'name': - return `${window.i18n('titleIsNow', [change.newName || ''])}.`; + return `${window.i18n('titleIsNow', [change.newName || ''])}`; case 'add': if (!change.contacts || !change.contacts.length) { throw new Error('Group update add is missing contacts');