Integrate local business workflow and SaaS redesign

This commit is contained in:
2026-06-12 21:08:35 +02:00
parent f00c5a3193
commit 21c7e4c9a4
88 changed files with 2683 additions and 849 deletions

View File

@@ -20,17 +20,22 @@ type BlacklistType =
| "email"
| "phone"
| "company"
| "google_place_id";
| "google_place_id"
| "source_business_id";
const blacklistTypeOptions: BlacklistType[] = [
"domain",
"email",
"phone",
"company",
"source_business_id",
"google_place_id",
];
function labelForType(type: BlacklistType): string {
if (type === "source_business_id") {
return "Source Business ID";
}
if (type === "google_place_id") {
return "Google Place ID";
}