diff --git a/src/components/ecosystem-pages/categories-mobile.tsx b/src/components/ecosystem-pages/categories-mobile.tsx index 1f900da3..a91e1dba 100644 --- a/src/components/ecosystem-pages/categories-mobile.tsx +++ b/src/components/ecosystem-pages/categories-mobile.tsx @@ -15,7 +15,10 @@ const Categories = ({ page: string; className?: string; }) => { - console.log(page); + const sortedTags = [ + ...tags.filter((tag: string) => tag.toLowerCase().includes("ai")), + ...tags.filter((tag: string) => !tag.toLowerCase().includes("ai")), + ]; return (