Updated message from design

This commit is contained in:
Jamie Kyle 2022-12-23 15:58:01 -08:00 committed by Jamie Kyle
parent 023cb8029d
commit 98ffdc2823
2 changed files with 3 additions and 3 deletions

View file

@ -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": {

View file

@ -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>
); );
} }