Compare commits

...

2 Commits

Author SHA1 Message Date
victorAnumudu addede388e made resources tab visible if enabled 2023-09-03 06:26:19 +01:00
tokslaw 6337c82374 Merge branch 'coupon-wallet-reload' of WrenchBoard/Users-Wrench into master 2023-08-29 16:57:03 +00:00
+12 -7
View File
@@ -158,13 +158,18 @@ export default function Resources(props) {
return (
<ul className="lg:flex lg:space-x-14 space-x-8">
{tabCategories?.length > 0 &&
tabCategories?.map((tabValue, idx) => (
<TabItem
key={tabValue.id}
tabValue={tabValue}
isActive={tab === tabValue.name || (idx === 0 && tab === "")}
/>
))}
tabCategories?.map((tabValue, idx) => {
if(tabValue.enabled){
return (
<TabItem
key={tabValue.id}
tabValue={tabValue}
isActive={tab === tabValue.name || (idx === 0 && tab === "")}
/>
)
}
}
)}
</ul>
);
};