diff --git a/interface/src/framework/system/UploadFileForm.tsx b/interface/src/framework/system/UploadFileForm.tsx index 750808dd9..6403c37fd 100644 --- a/interface/src/framework/system/UploadFileForm.tsx +++ b/interface/src/framework/system/UploadFileForm.tsx @@ -54,7 +54,7 @@ const UploadFileForm: FC = () => { if (err.message === 'The user aborted a request') { toast.warning(LL.UPLOAD() + ' ' + LL.ABORTED()); } else if (err.message === 'Network Error') { - toast.warning('Invalid file extension'); + toast.warning('Invalid file extension or incompatible bin file'); } else { toast.error(err.message); }