Expand my Community achievements bar.

Announcement: Calling all learners and mentors! Applications are now open for the Adobe Analytics 2024 Mentorship Program! Come learn from the best to prepare for an official certification in Adobe Analytics.

Uncaught Error: Mismatched anonymous define() module: error showing while implementing 3rd party tag from adobe launch

Avatar

Level 2

Hello all,

I am facing the below error
Uncaught Error: Mismatched anonymous define() module
while implementing a 3rd party tag via Adobe Launch custom code for an Adobe Commerce 2.4 website.

Any guidance to resolve this issue will be appreciated.

Thanks in advance

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Reply

Avatar

Community Advisor

This looks like a standard JavaScript error, likely coming from a custom code module in your Launch implementation.

 

Without seeing your code, there is nothing we can do to help solve it.

 

However, to help you track down the issue. I suggest that you enable the Satellite Debugger so you can see which rules are firing and when to help track down where that code may be.

 

To turn on and off debugger:

// Turn it on
_satellite.setDebug(true);

// Turn it off
_satellite.setDebug(false);

 

Good luck tracking this down.