diff --git a/api/ethos/licensing-notifications.ts b/api/ethos/licensing-notifications.ts index 5e50475c..bde28264 100644 --- a/api/ethos/licensing-notifications.ts +++ b/api/ethos/licensing-notifications.ts @@ -22,7 +22,10 @@ function getEmailTransporter() { const fromEmail = process.env.SMTP_FROM_EMAIL || "no-reply@aethex.tech"; interface LicensingNotification { - type: "agreement_created" | "agreement_approved" | "agreement_pending_approval"; + type: + | "agreement_created" + | "agreement_approved" + | "agreement_pending_approval"; track_id: string; artist_id: string; licensee_id: string; diff --git a/client/pages/Explore.tsx b/client/pages/Explore.tsx index 66d2ee02..84325ef7 100644 --- a/client/pages/Explore.tsx +++ b/client/pages/Explore.tsx @@ -29,7 +29,11 @@ import { Avatar, } from "lucide-react"; import { useEffect, useMemo, useState } from "react"; -import { Avatar as AvatarComponent, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { + Avatar as AvatarComponent, + AvatarFallback, + AvatarImage, +} from "@/components/ui/avatar"; import { communityService } from "@/lib/supabase-service"; const ARMS = [ @@ -487,7 +491,10 @@ export default function Explore() { {/* Featured Posts Section */} {!isLoadingFeed && featuredPosts.length > 0 && ( -