-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2099 from bcgov/feature/ALCS-2411
Throw error if correct documents failed to generate and attach
- Loading branch information
Showing
9 changed files
with
94 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,7 +78,9 @@ export class ApplicationSubmissionReviewService { | |
this.toastService.showSuccessToast('Application Review Submitted'); | ||
} catch (e) { | ||
console.error(e); | ||
this.toastService.showErrorToast('Failed to submit Application Review, please try again later'); | ||
this.toastService.showErrorToast( | ||
'Failed to submit Application Review, please try again. If the problem persists, contact [email protected].', | ||
); | ||
} finally { | ||
this.overlayService.hideSpinner(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,9 @@ export class ApplicationSubmissionService { | |
this.toastService.showSuccessToast('Application Submitted'); | ||
} catch (e) { | ||
console.error(e); | ||
this.toastService.showErrorToast('Failed to submit Application, please try again'); | ||
this.toastService.showErrorToast( | ||
'Failed to submit Application, please try again. If the problem persists, contact [email protected].', | ||
); | ||
} finally { | ||
this.overlayService.hideSpinner(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,9 @@ export class NoticeOfIntentSubmissionService { | |
this.toastService.showSuccessToast('Notice of Intent Submitted'); | ||
} catch (e) { | ||
console.error(e); | ||
this.toastService.showErrorToast('Failed to submit Notice of Intent, please try again'); | ||
this.toastService.showErrorToast( | ||
'Failed to submit Notice of Intent, please try again. If the problem persists, contact [email protected].', | ||
); | ||
} finally { | ||
this.overlayService.hideSpinner(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,9 @@ export class NotificationSubmissionService { | |
this.toastService.showSuccessToast('SRW Submitted'); | ||
} catch (e) { | ||
console.error(e); | ||
this.toastService.showErrorToast('Failed to submit SRW, please try again'); | ||
this.toastService.showErrorToast( | ||
'Failed to submit SRW, please try again. If the problem persists, contact [email protected].', | ||
); | ||
} finally { | ||
this.overlayService.hideSpinner(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters