Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 685b592

Browse files
committed
Make error message consistent with menu title
1 parent 329f1c9 commit 685b592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/structures/MatrixChat.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,9 +1202,9 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
12021202
const roomLink = makeRoomPermalink(roomId);
12031203
const success = await copyPlaintext(roomLink);
12041204
if (!success) {
1205-
Modal.createTrackedDialog("Unable to copy room", "", ErrorDialog, {
1206-
title: _t("Unable to copy room"),
1207-
description: _t("Unable to copy the room to the clipboard."),
1205+
Modal.createTrackedDialog("Unable to copy room link", "", ErrorDialog, {
1206+
title: _t("Unable to copy room link"),
1207+
description: _t("Unable to copy a link to the room to the clipboard."),
12081208
});
12091209
}
12101210
}

0 commit comments

Comments
 (0)