diff --git a/next/components/listInfo/details.js b/next/components/listInfo/details.js index dbefd079..56132de6 100644 --- a/next/components/listInfo/details.js +++ b/next/components/listInfo/details.js @@ -72,7 +72,6 @@ const DetailsValue = styled(FlexBetween)` export default function Details({ space }) { const strategyCount = space.weightStrategy?.length || 0; const assets = getSpaceAssets(space); - const isSociety = space.accessibility === "society"; return ( @@ -92,7 +91,7 @@ export default function Details({ space }) { - {!isSociety && ( + {space.proposeThreshold && ( Config diff --git a/next/components/listInfo/index.js b/next/components/listInfo/index.js index 98ef4186..5b7b301c 100644 --- a/next/components/listInfo/index.js +++ b/next/components/listInfo/index.js @@ -88,7 +88,6 @@ export default function ListInfo({ space }) { const strategyCount = space.weightStrategy?.length || 0; const networkCount = space.networks?.length || 0; - const isSociety = space.accessibility === "society"; const handleShowModal = () => { setModalOpen(true); @@ -124,7 +123,7 @@ export default function ListInfo({ space }) { - {!isSociety && ( + {space.proposeThreshold && ( <>