From 4aed92f50e868077faeef6837ca49cbc2f4870b1 Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Fri, 26 Jan 2024 12:52:06 +0100 Subject: [PATCH] chore(submit): remove custom error message for pubsub providers, doesn't seem needed anymore --- src/views/submit/submit.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/views/submit/submit.tsx b/src/views/submit/submit.tsx index b366687d..86a28dac 100644 --- a/src/views/submit/submit.tsx +++ b/src/views/submit/submit.tsx @@ -43,12 +43,7 @@ const useSubmitStore = create((set) => ({ onChallengeVerification: alertChallengeVerificationFailed, onError: (error: Error) => { console.error(error); - // TODO: remove this explanation when pubsub providers uptime is fixed: let errorMessage = error.message; - if (errorMessage === 'The challenge request has been published over the pubsub topic but no response was received') { - errorMessage += - '. This means seedit web is currently offline, download seedit desktop which is fully peer-to-peer: https://github.com/plebbit/seedit/releases/latest'; - } alert(errorMessage); }, };