Skip to content

Commit

Permalink
fix: pick another field
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger committed Aug 23, 2023
1 parent 646b142 commit e4c254a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/user/library/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export function transformCreative(
"modifiedAt",
"id",
"creativeInstanceId",
"targetUrlValid",
]);

return createInput;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export function EditCampaign() {
onSubmit={async (v: CampaignForm, { setSubmitting }) => {
setSubmitting(true);
const input = transformEditForm(v, params.campaignId);
console.log(input);
await mutation({ variables: { input } });
setSubmitting(false);
}}
Expand Down

0 comments on commit e4c254a

Please sign in to comment.