Skip to content

Commit 9be2908

Browse files
Merge pull request #876 from pradeepkanaka/ADO-430/fix-undefine-issue
[ADO-430] Fix undefined array key issue
2 parents aeef5a1 + a413dd7 commit 9be2908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Meta/Conversion/Model/Tracker/InitiateCheckout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,6 @@ private function prepareData(CartInterface $quote): array
143143

144144
}
145145

146-
return ['categoryIds' => $categoryIds, 'contentIds' => $contentIds, 'contents' => $contents];
146+
return ['category_ids' => $categoryIds, 'content_ids' => $contentIds, 'contents' => $contents];
147147
}
148148
}

0 commit comments

Comments
 (0)