From 6b5d2b0d6f19e359758a851c71d7e623d772acc5 Mon Sep 17 00:00:00 2001 From: Jai A Date: Wed, 24 Apr 2024 19:12:01 -0700 Subject: [PATCH] fix lint --- theseus_gui/src/components/ui/ErrorModal.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/theseus_gui/src/components/ui/ErrorModal.vue b/theseus_gui/src/components/ui/ErrorModal.vue index 861c4d36c..ffe170b73 100644 --- a/theseus_gui/src/components/ui/ErrorModal.vue +++ b/theseus_gui/src/components/ui/ErrorModal.vue @@ -23,7 +23,10 @@ defineExpose({ supportLink.value = 'https://support.modrinth.com/en/articles/9038231-minecraft-sign-in-issues' - if (errorVal.message.includes('existing connection was forcibly closed') || errorVal.message.includes('error sending request for url')) { + if ( + errorVal.message.includes('existing connection was forcibly closed') || + errorVal.message.includes('error sending request for url') + ) { metadata.value.network = true } if (errorVal.message.includes('because the target machine actively refused it')) {