Skip to content

Commit

Permalink
Alter failure toast messages
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephVolosin committed Nov 20, 2024
1 parent 37d2d60 commit 28be295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ const effects = {
if (response?.errors === undefined) {
showSuccessToast('External Event Type Created Successfully');
} else {
showFailureToast('External Event Type Attribute Schema Validation Failed');
showFailureToast('External Event Type Creation Failed');
}
return response;
} catch (e) {
Expand Down Expand Up @@ -1052,7 +1052,7 @@ const effects = {
if (response?.errors === undefined) {
showSuccessToast('External Source Type Created Successfully');
} else {
showFailureToast('External Source Type Attribute Schema Validation Failed');
showFailureToast('External Source Type Creation Failed');
}
return response;
} catch (e) {
Expand Down

0 comments on commit 28be295

Please sign in to comment.