From 685b59235dfbc99109bc8d8f153b96750ad2523e Mon Sep 17 00:00:00 2001 From: James Salter Date: Fri, 16 Jul 2021 09:24:14 +0100 Subject: [PATCH] Make error message consistent with menu title --- src/components/structures/MatrixChat.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/structures/MatrixChat.tsx b/src/components/structures/MatrixChat.tsx index cadf66d11e..c6ca965934 100644 --- a/src/components/structures/MatrixChat.tsx +++ b/src/components/structures/MatrixChat.tsx @@ -1202,9 +1202,9 @@ export default class MatrixChat extends React.PureComponent { const roomLink = makeRoomPermalink(roomId); const success = await copyPlaintext(roomLink); if (!success) { - Modal.createTrackedDialog("Unable to copy room", "", ErrorDialog, { - title: _t("Unable to copy room"), - description: _t("Unable to copy the room to the clipboard."), + Modal.createTrackedDialog("Unable to copy room link", "", ErrorDialog, { + title: _t("Unable to copy room link"), + description: _t("Unable to copy a link to the room to the clipboard."), }); } }