File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/pages/DelegationsPage/DelegationsAvailabilityTab Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,10 @@ export const DelegationAvailabilityDrawer: React.FC<DelegationAvailabilityDrawer
5252 >
5353 < Stack spacing = { 4 } >
5454 < Box >
55- < SectionContainer innerSection >
55+ < SectionContainer
56+ innerSection
57+ sx = { { display : 'none' , visibility : 'hidden' } } // TEMP needed to hide consumer delegation availability
58+ >
5659 < Stack spacing = { 2 } >
5760 < Typography sx = { { fontWeight : 700 } } > { t ( 'consumeDelegation.label' ) } </ Typography >
5861 < Typography > { t ( 'consumeDelegation.infoLabel' ) } </ Typography >
Original file line number Diff line number Diff line change @@ -57,11 +57,12 @@ export const DelegationsAvailabilityTab: React.FC = () => {
5757 label = { t ( 'consumeDelegation.label' ) }
5858 labelDescription = { t ( 'consumeDelegation.infoLabel' ) }
5959 content = { t ( `consumeDelegation.value.${ isAvailableConsumerDelegations } ` ) }
60+ sx = { { display : 'none' , visibility : 'hidden' } } //TEMP needed to hide consumer delegation availability
6061 />
6162 < InformationContainer
6263 label = { t ( 'produceDelegation.label' ) }
6364 labelDescription = { t ( 'produceDelegation.infoLabel' ) }
64- content = { t ( `consumeDelegation .value.${ isAvailableProducerDelegations } ` ) }
65+ content = { t ( `produceDelegation .value.${ isAvailableProducerDelegations } ` ) }
6566 />
6667 </ Stack >
6768 </ SectionContainer >
You can’t perform that action at this time.
0 commit comments