From 1e0efe601189d8f37dd8daf0530537e1a702800b Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Wed, 18 Jun 2025 18:32:55 -0600 Subject: [PATCH] lengthen the error timeout when the message may be complicated, eg. with details from the server --- src/views/ContactsView.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/ContactsView.vue b/src/views/ContactsView.vue index faf63dbf..fbf85774 100644 --- a/src/views/ContactsView.vue +++ b/src/views/ContactsView.vue @@ -617,7 +617,7 @@ export default class ContactsView extends Vue { title: "Error with Invite", text: message, }, - 5000, + -1, ); } // if we're here, they haven't redirected anywhere, so we'll redirect here without a query parameter @@ -1122,7 +1122,7 @@ export default class ContactsView extends Vue { (regResult.error as string) || "Something went wrong during registration.", }, - 5000, + -1, ); } } catch (error) { @@ -1156,7 +1156,7 @@ export default class ContactsView extends Vue { title: "Registration Error", text: userMessage, }, - 5000, + -1, ); } }