| 6 | import { createClient } from "@/utils/supabase/client"; |
| 7 | |
| 8 | interface UploadLogoProps { |
| 9 | onUpload?: (url: string) => void; |
| 10 | prefix: string; |
| 11 | image?: string | null; |
| 12 | } |
| 13 | |
| 14 | export default function UploadLogo({ |
| 15 | onUpload, |
nothing calls this directly
no outgoing calls
no test coverage detected