Hi @shreyashruti ,
Based on your description, this appears to be a Guide Bridge initialization issue after the AEM Forms LTS upgrade. Here's what's likely happening and how to address it:
The Guide Bridge library (which handles adaptive form rendering and data binding) may not be loading correctly or has compatibility issues with version 6.1.152.
Check the console error details - Look for specific error messages mentioning guideBridge or GuideBridge is not defined
Verify clientlib dependencies - Ensure the Guide Bridge client libraries are properly included and loading in the correct order in your modal implementation
Check for JavaScript conflicts - The upgrade may have introduced script loading order issues or conflicts with custom code
Review the modal initialization timing - Forms in modals often fail when Guide Bridge isn't fully initialized before the form renders. Add a check to ensure guideBridge is ready before populating values
Apply latest patches - Check if Adobe has released any hotfixes for version 6.1.152 that address Guide Bridge issues
Add a delay or use the guideBridge.connect() callback to ensure the bridge is ready before attempting to set values in your modal forms.
I'd recommend checking Adobe's release notes for 6.1.152 and opening a support ticket if this is a known regression issue.Claude is AI and can make mistakes. Please double-check responses.
Hrishikesh Kagane