We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d76d4c2 + a7b4273 commit 02931b0Copy full SHA for 02931b0
packages/containers/SecureMessage/SecureMessage.js
@@ -39,11 +39,13 @@ const SecureMessageContainerComponent = ({
39
40
return raws;
41
};
42
-
+
43
const getFormTitle = () => {
44
if (!!passwordFromLink && !decryptedMessage) {
45
return (
46
- <AdaptiveTitle>Your secret is here. Click the button below to see the message</AdaptiveTitle>
+ <AdaptiveTitle>
47
+ Your secret is here. Click the button below to see the message
48
+ </AdaptiveTitle>
49
);
50
}
51
@@ -55,7 +57,7 @@ const SecureMessageContainerComponent = ({
55
57
56
58
59
const handleClickCopyText = () => {
- copy(decryptedMessage.text);
60
+ copy(decodeURIComponent(decryptedMessage.text));
61
62
notification.show({
63
text: `The text has been copied`,
0 commit comments