There are several reasons why this could happen. First of all, check if the objectID passed is indeed the actual objectID from the variant ID and not the product ID.
In the Shopify Products schema, the objectID attribute is the variantID, which is a unique identifier used by Algolia.
objectID, // Variant id (unique identifier also used by Algolia)
In some cases (especially if you have customised the code) you may have incorrectly passed the objectID as the productID from Shopify.
id, // Product id
Depending on your implementation and relevant use of event methods, both of the clickedObjectIDsAfterSearch and convertedObjectIDsAfterSearch methods take the value of the objectID. These methods are used in our click and conversion events feature within the Shopify extension.
The key takeaway in this situation is to ensure the correct type of ID is passed to the event.