Skip to content
Snippets Groups Projects
Unverified Commit c286f1c5 authored by Matiss Janis Aboltins's avatar Matiss Janis Aboltins Committed by GitHub
Browse files

:bug: remove 'we have been notified' copy (#1155)

Closes #1069

I've not actually tested this change. Which is why I'm not changing it
to direct links (as they might not work).

Instead I'm just applying a very quick patch so the message would not be
misleading anymore.
parent 977e0c90
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ function getErrorMessage(error) {
case 'not-ynab4':
return 'This file is not valid. Please select a .ynab4 file';
default:
return 'An unknown error occurred while importing. Sorry! We have been notified of this issue.';
return 'An unknown error occurred while importing. Please report this as a new issue on Github.';
}
}
......
......@@ -19,7 +19,7 @@ function getErrorMessage(error) {
case 'invalid-metadata-file':
return 'The metadata file in the given archive is corrupted.';
default:
return 'An unknown error occurred while importing. Sorry! We have been notified of this issue.';
return 'An unknown error occurred while importing. Please report this as a new issue on Github.';
}
}
......
......@@ -11,7 +11,7 @@ function getErrorMessage(error) {
case 'not-ynab4':
return 'This file is not valid. Please select a compressed ynab4 zip file.';
default:
return 'An unknown error occurred while importing. Sorry! We have been notified of this issue.';
return 'An unknown error occurred while importing. Please report this as a new issue on Github.';
}
}
......
......@@ -20,7 +20,7 @@ function getErrorMessage(error) {
case 'not-ynab5':
return 'This file is not valid. Please select a JSON file exported from nYNAB.';
default:
return 'An unknown error occurred while importing. Sorry! We have been notified of this issue.';
return 'An unknown error occurred while importing. Please report this as a new issue on Github.';
}
}
......
......@@ -16,7 +16,7 @@ export function addGenericErrorNotification() {
type: 'error',
message:
'Something internally went wrong. You may want to restart the app if anything looks wrong. ' +
'We have been notified of the issue and will try to fix it soon.',
'Please report this as a new issue on Github.',
});
}
......
---
category: Maintenance
authors: [MatissJanis]
---
Remove misleading 'we have been notified' error messages
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment