From a2c694b3d576ee3f06ad2e91c3fd38310e1519d9 Mon Sep 17 00:00:00 2001 From: Ted Ian Osias Date: Tue, 7 Oct 2025 00:03:40 +0800 Subject: [PATCH] fix(issue 01): update try again text --- src/components/proposal/hooks/useProposalSubmission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/proposal/hooks/useProposalSubmission.js b/src/components/proposal/hooks/useProposalSubmission.js index 7d0b634b..e76c7bf0 100644 --- a/src/components/proposal/hooks/useProposalSubmission.js +++ b/src/components/proposal/hooks/useProposalSubmission.js @@ -273,7 +273,7 @@ const useProposalSubmission = ({ history.push('/governance') } catch (error) { await swalPromise.catch(() => undefined) - const timedOutMessage = 'Proposal submission is still processing. Please try again later.' + const timedOutMessage = 'Proposal submission failed. Please verify that the proposal is not displayed on the Governance page, and if not, try again in 5 minutes.' const defaultMessage = 'Proposal submission failed. Please try again in 5mins.' const isTimeoutError = error.message === 'Proposal submission timed out' || axios.isCancel(error)