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
@@ -114,7 +114,7 @@ export const ADDON_CATALOG: Record<BrandFeatureKey, BrandFeature> = {
};
// Core features that cannot be disabled
export const CORE_FEATURES: BrandFeatureKey[] = [
const CORE_FEATURES: BrandFeatureKey[] = [
// Core platform features (always enabled)
// These are not add-ons — the platform doesn't function without them
];
@@ -197,6 +197,6 @@ async function fetchBrandFeatures(
/**
* Invalidate cached features for a brand (call after feature toggle).
*/
export function invalidateBrandFeatureCache(brandId: string): void {
function invalidateBrandFeatureCache(brandId: string): void {
brandFeatureCache.delete(brandId);
}