diff --git a/src/ui/app/business/explore/page.tsx b/src/ui/app/business/explore/page.tsx index 9593f428..d765275e 100644 --- a/src/ui/app/business/explore/page.tsx +++ b/src/ui/app/business/explore/page.tsx @@ -111,7 +111,9 @@ export default function Explore({}: Props) { twitterUsername: inf.user_name || "", profileUrl: inf.profile_image_url || "", services: inf.service_types - ? inf.service_types.map((service: any) => service.serviceType) + ? inf.service_types + .filter((service: any) => service.packageStatus == "published") + .map((service: any) => service.serviceType) : [], followers: formatTwitterFollowers(inf.followers_count),