fix: Remove duplicate state declarations in useCampaignCreator.ts

This commit is contained in:
ajaysi
2026-03-02 15:18:02 +05:30
parent 85aa808122
commit b4549ebe39

View File

@@ -438,10 +438,12 @@ export const useCampaignCreator = () => {
}, []);
// Personalization
const [userPreferences, setUserPreferences] = useState<any>(null);
const [isLoadingPreferences, setIsLoadingPreferences] = useState(false);
const [recommendations, setRecommendations] = useState<any>(null);
const [isLoadingRecommendations, setIsLoadingRecommendations] = useState(false);
// Removed duplicate state declarations that were causing build errors
// These are already declared at the top of the hook
// const [userPreferences, setUserPreferences] = useState<any>(null);
// const [isLoadingPreferences, setIsLoadingPreferences] = useState(false);
// const [recommendations, setRecommendations] = useState<any>(null);
// const [isLoadingRecommendations, setIsLoadingRecommendations] = useState(false);
const getPersonalizedDefaults = useCallback(
async (formType: string): Promise<any> => {