Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
chore: fix marketo mapper (#2073)
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfryan committed Jan 20, 2024
1 parent f47e554 commit 529a126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/remotes/impl/marketo/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const fromMarketoFormFieldToFormField = (marketoFormField: MarketoFormFie
name: marketoFormField.label,
required: marketoFormField.required,
dataFormat: marketoFormField.dataType,
dataOptions: marketoFormField.fieldMetaData?.values.map(({ label, value, isDefault }) => ({
dataOptions: marketoFormField.fieldMetaData?.values?.map(({ label, value, isDefault }) => ({
label,
value,
isDefault,
Expand Down

0 comments on commit 529a126

Please sign in to comment.