diff --git a/client/pages/Explore.tsx b/client/pages/Explore.tsx index ad9f6e29..8e5db8e5 100644 --- a/client/pages/Explore.tsx +++ b/client/pages/Explore.tsx @@ -205,11 +205,11 @@ export default function Explore() { {combined.map((offering: any, idx: number) => (
- +
{offering.title} @@ -234,28 +234,42 @@ export default function Explore() {
)}
- + {offering.link ? ( - ) : ( -
- {offering.actions?.map((action: any) => ( + <> + {offering.actions?.[0] ? ( - ))} -
+ ) : null} + {offering.actions && offering.actions.length > 1 ? ( +
+ {offering.actions.slice(1).map((a: any) => ( + a.external ? ( + + {a.label} + + ) : ( + + {a.label} + + ) + ))} +
+ ) : null} + )}