Updated message from design
This commit is contained in:
parent
023cb8029d
commit
98ffdc2823
2 changed files with 3 additions and 3 deletions
|
@ -685,8 +685,8 @@
|
||||||
"message": "You can't select photos and videos along with files.",
|
"message": "You can't select photos and videos along with files.",
|
||||||
"description": "An error popup when the user has attempted to add an attachment"
|
"description": "An error popup when the user has attempted to add an attachment"
|
||||||
},
|
},
|
||||||
"cannotSelectMultipleNonImageAttachments": {
|
"cannotSelectMultipleFileAttachments": {
|
||||||
"message": "You can only select one non-image attachment.",
|
"message": "You can only select one file at a time.",
|
||||||
"description": "An error popup when the user has attempted to add multiple non-image attachments"
|
"description": "An error popup when the user has attempted to add multiple non-image attachments"
|
||||||
},
|
},
|
||||||
"maximumAttachments": {
|
"maximumAttachments": {
|
||||||
|
|
|
@ -315,7 +315,7 @@ export function ToastManager({
|
||||||
if (toastType === ToastType.UnsupportedMultiAttachment) {
|
if (toastType === ToastType.UnsupportedMultiAttachment) {
|
||||||
return (
|
return (
|
||||||
<Toast onClose={hideToast}>
|
<Toast onClose={hideToast}>
|
||||||
{i18n('cannotSelectMultipleNonImageAttachments')}
|
{i18n('cannotSelectMultipleFileAttachments')}
|
||||||
</Toast>
|
</Toast>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue