Browse Source

correct an error with unseen internal methods

kb/add-usage-guide
Trent Larson 1 year ago
parent
commit
624abbb179
  1. 7
      src/views/HomeView.vue

7
src/views/HomeView.vue

@ -313,8 +313,8 @@ export default class HomeView extends Vue {
hours,
);
if (isGiveCreationError(result)) {
const errorMessage = getGiveCreationErrorMessage(result);
if (this.isGiveCreationError(result)) {
const errorMessage = this.getGiveCreationErrorMessage(result);
console.log("Error with give result:", result);
this.setAlert(
"Error",
@ -327,7 +327,8 @@ export default class HomeView extends Vue {
console.log("Error with give caught:", error);
this.setAlert(
"Error",
getGiveErrorMessage(error) || "There was an error recording the give.",
this.getGiveErrorMessage(error) ||
"There was an error recording the give.",
);
}
}

Loading…
Cancel
Save