UI: Modify language of error message in ImportConfigModal

This commit is contained in:
Mike Salvatore 2022-08-03 13:19:20 -04:00
parent 8615ae554f
commit 722e1afb63
1 changed files with 2 additions and 2 deletions

View File

@ -149,8 +149,8 @@ const ConfigImportModal = (props: Props) => {
setConfigCredentials(importContents['credentials']);
} catch (e) {
if (e instanceof TypeError) {
setErrorMessage('Missing required fields, configuration file is most '
+ 'likely from an old version')
setErrorMessage('Missing required fields; configuration file is most '
+ 'likely from an older version of Infection Monkey.')
}
else {
throw e;