Solved
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Hi,
Can you post your code? The only important part is that you should initiate the ModelManager before the root.render() invocation, or any other render() method which bootstrap the application. Like this:
...
import { ModelManager } from "@adobe/aem-spa-page-model-manager";
// Initialize the ModelManager before invoking root.render(..).
ModelManager.initializeAsync();
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<App />);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.