make notification errors go away automatically

This commit is contained in:
2025-01-04 18:02:10 -07:00
parent d4bb2a35fc
commit 2c0b927080
21 changed files with 71 additions and 72 deletions

View File

@@ -606,7 +606,7 @@ export default class ClaimView extends Vue {
title: "Error Loading Profile",
text: "See the Help page for problems with your personal data.",
},
-1,
5000,
);
}
@@ -623,7 +623,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "No claim ID was provided.",
},
-1,
5000,
);
}
@@ -685,7 +685,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "There was a problem retrieving that claim.",
},
-1,
5000,
);
return;
}
@@ -732,7 +732,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "Got error retrieving linked provider data.",
},
-1,
5000,
);
}
} else if (this.veriClaim.claimType === "Offer") {
@@ -755,7 +755,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "Got error retrieving linked offer data.",
},
-1,
5000,
);
}
}
@@ -810,7 +810,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "There was a problem getting that claim.",
},
-1,
5000,
);
}
} catch (error: unknown) {
@@ -854,7 +854,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "Something went wrong retrieving that claim.",
},
-1,
5000,
);
}
}
@@ -917,7 +917,7 @@ export default class ClaimView extends Vue {
title: "Error",
text: "There was a problem submitting the confirmation.",
},
-1,
5000,
);
}
}