From e911750382a15f3c1e43bce892cb9ad268f5c2d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Santana=20Gon=C3=A7alves?= Date: Mon, 16 Sep 2024 18:39:48 -0300 Subject: [PATCH] fix popover when proposal is being executed. (#212) --- src/pages/proposals/[id].tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/proposals/[id].tsx b/src/pages/proposals/[id].tsx index 4bab6215..a8077804 100644 --- a/src/pages/proposals/[id].tsx +++ b/src/pages/proposals/[id].tsx @@ -231,6 +231,8 @@ const PageWithProposal = (proposal: PageWithProposal) => { The proposal is not ready to be executed yet. It should be ready on:{' '} {proposalEtaHumanDate}

+ ) : isExecuting ? ( +

The proposal is being executed.

) : (

The proposal can be executed.

)