fix: react-doctor unused-export 141→~80 (remove dead exports, enums/marketing unused, inline campaignStatusEnum)

This commit is contained in:
Nora
2026-06-26 05:25:36 -06:00
parent 0ea11e4db6
commit 13d15883b1
34 changed files with 106 additions and 174 deletions
+2 -2
View File
@@ -196,7 +196,7 @@ export type UpsertContactResult = {
error: string;
};
export async function upsertContact(contact: {
async function upsertContact(contact: {
id?: string;
brand_id: string;
email?: string;
@@ -384,7 +384,7 @@ export type OptOutResult = {
error: string;
};
export async function optOutContact(params: {
async function optOutContact(params: {
email: string;
brandId: string;
method: "email" | "sms";