completionId: cgen-c9f528c40f574fef927e6ee06f631315

cgen-c9f528c40f574fef927e6ee06f631315
This commit is contained in:
Builder.io 2025-11-11 23:25:57 +00:00
parent 6c0e1e0ca9
commit 1dfe6e4958

View file

@ -37,6 +37,13 @@ interface ArtistProfile {
sample_price_sfx?: number;
sample_price_score?: number;
turnaround_days?: number;
verified?: boolean;
}
interface VerificationStatus {
status: "pending" | "approved" | "rejected" | "none";
submitted_at?: string;
rejection_reason?: string;
}
export default function ArtistSettings() {