diff --git a/src/components/SpaceSidebarNavigation.vue b/src/components/SpaceSidebarNavigation.vue index 1959ce7a5a2..9ed00dabe80 100644 --- a/src/components/SpaceSidebarNavigation.vue +++ b/src/components/SpaceSidebarNavigation.vue @@ -15,6 +15,9 @@ const hasDelegationStrategy = computed(() => { }); const hasDelegatesSettings = computed(() => { + // delegation dashboard enabled on v2 for these spaces + const ignoreSpaces = ['ens.eth', 'gitcoindao.eth', 'uniswapgovernance.eth']; + if (ignoreSpaces.includes(props.space.id)) return false; return props.space.delegationPortal?.delegationType; });