diff --git a/src/containers/votingTerminal/infoTab.tsx b/src/containers/votingTerminal/infoTab.tsx index d9a9b8110..4c37ffe08 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 ( <> @@ -168,21 +167,13 @@ const InfoTab: React.FC = ({

{t('votingTerminal.endDate')}

- {isMultisigProposal ? ( -

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

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

- {preciseEndDate} -

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

+ {preciseEndDate} +

+
)}