diff --git a/src/containers/settings/gaslessVoting/index.tsx b/src/containers/settings/gaslessVoting/index.tsx index 2c0f4c208..a5130dac9 100644 --- a/src/containers/settings/gaslessVoting/index.tsx +++ b/src/containers/settings/gaslessVoting/index.tsx @@ -18,6 +18,8 @@ import {useGlobalModalContext} from '../../../context/globalModals'; import ModalBottomSheetSwitcher from '../../../components/modalBottomSheetSwitcher'; import {FilteredAddressList} from '../../../components/filteredAddressList'; import {MultisigWalletField} from '../../../components/multisigWallets/row'; +import {CHAIN_METADATA} from '../../../utils/constants'; +import {useNetwork} from '../../../context/network'; const GaslessVotingSettings: React.FC = ({daoDetails}) => { const {t} = useTranslation(); @@ -49,7 +51,6 @@ const GaslessVotingSettings: React.FC = ({daoDetails}) => { return ( <> - {/* COMMUNITY SECTION */} {t('labels.members')} @@ -81,6 +82,10 @@ const GaslessVotingSettings: React.FC = ({daoDetails}) => { })} + + DEV Wrapped token + {String(votingSettings.hasGovernanceEnabled)} + { const {isOpen, close} = useGlobalModalContext('committeeMembers'); + const {network} = useNetwork(); /************************************************* * Render * @@ -110,7 +116,15 @@ const CustomCommitteeAddressesModal = ({ onClose={close} data-testid="communityModal" > - + { + window.open( + `${CHAIN_METADATA[network].explorer}address/${user}`, + '_blank' + ); + }} + /> ); };