From 64fabc190a0d67ea81e21380dd398ab69c0acc48 Mon Sep 17 00:00:00 2001 From: Ryan Tharp <neuro@interx.net> Date: Wed, 5 Feb 2020 02:35:41 -0800 Subject: [PATCH] put period back at the end --- 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 4e4806e13..4186a11fe 100644 --- a/ts/components/conversation/GroupNotification.tsx +++ b/ts/components/conversation/GroupNotification.tsx @@ -49,7 +49,7 @@ export class GroupNotification extends React.Component<Props> { switch (type) { case 'name': - return i18n('titleIsNow', [newName || '']); + return i18n('titleIsNow', [newName || '']) + '.'; case 'add': if (!contacts || !contacts.length) { throw new Error('Group update is missing contacts');