From 66b0d8192feb71068c40e9af0dd0680845dc10c2 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 20 Oct 2025 18:30:47 -0600 Subject: [PATCH] chore(artists): remove availability badge on both desktop and mobile; strip scroll-area import --- components/artist-portfolio.tsx | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/components/artist-portfolio.tsx b/components/artist-portfolio.tsx index f7fbb989a..f2f8e8f56 100644 --- a/components/artist-portfolio.tsx +++ b/components/artist-portfolio.tsx @@ -3,13 +3,12 @@ import { useState, useEffect, useRef, useCallback } from "react" import Image from "next/image" import { Button } from "@/components/ui/button" -import { Badge } from "@/components/ui/badge" import Link from "next/link" import { Instagram, ExternalLink, Loader2 } from "lucide-react" import { useArtist } from "@/hooks/use-artist-data" import { useIsMobile } from "@/hooks/use-mobile" import { type CarouselApi, Carousel, CarouselContent, CarouselItem } from "@/components/ui/carousel" -import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area" +// Removed mobile filter scroll area interface ArtistPortfolioProps { artistId: string @@ -202,14 +201,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) { className="object-cover" />
-
- - {artist.isActive ? "Available" : "Unavailable"} - -
+ {/* Availability badge removed */}
@@ -268,7 +260,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) { {/* Hero Section - Mobile stacked */}
-
+
{artist.name}
-
- - {artist.isActive ? "Available" : "Unavailable"} - -

{artist.name}

{artist.specialties.join(", ")}