From 5fd18e9a9886f2641e90dabdc6091235f7de3263 Mon Sep 17 00:00:00 2001 From: Barukimang Date: Thu, 25 Jul 2024 17:15:41 +0300 Subject: [PATCH] fix(APP-2621): Proposal is missing exact expiry date/time for multisig DAOs (#1391) --- src/containers/votingTerminal/infoTab.tsx | 25 ++++++++--------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/containers/votingTerminal/infoTab.tsx b/src/containers/votingTerminal/infoTab.tsx index d9a9b8110..2545ca692 100644 --- a/src/containers/votingTerminal/infoTab.tsx +++ b/src/containers/votingTerminal/infoTab.tsx @@ -49,7 +49,6 @@ const InfoTab: React.FC = ({ preciseEndDate, }) => { const {t} = useTranslation(); - const isMultisigProposal = minApproval != null && minApproval !== 0; return ( <> @@ -167,22 +166,14 @@ const InfoTab: React.FC = ({

{t('votingTerminal.endDate')}

- - {isMultisigProposal ? ( -

- {t('votingTerminal.multisig.endDescription')} -

- ) : ( - <> - {endDate} - {preciseEndDate && ( -
-

- {preciseEndDate} -

-
- )} - + + {endDate} + {preciseEndDate && ( +
+

+ {preciseEndDate} +

+
)}