diff --git a/src/form/fragmentUtil.ts b/src/form/fragmentUtil.ts index 2892fac8..e4833743 100644 --- a/src/form/fragmentUtil.ts +++ b/src/form/fragmentUtil.ts @@ -53,7 +53,6 @@ export function createAdSetFromFragment( campaignId, ads: ads.map((ad) => ({ creativeId: ad.creative.id, - creativeSetId: data.id, })), price: ads[0].price, bannedKeywords: data.bannedKeywords, diff --git a/src/user/library/index.ts b/src/user/library/index.ts index 63d2f8ba..3e128a7e 100644 --- a/src/user/library/index.ts +++ b/src/user/library/index.ts @@ -94,7 +94,7 @@ export function editCampaignValues( const billingType = (_.head(campaign.adSets)?.billingType ?? "cpm") as Billing; - const rawPrice = BigNumber(_.head(campaign.adSets)?.price ?? "0.1"); + const rawPrice = BigNumber(_.head(campaign.adSets)?.price ?? ".006"); const price = billingType === "cpm" ? rawPrice.multipliedBy(1000) : rawPrice; return {