Hi Team,
I am trying to create a react app with sidebar and full page components. but seems like at load time of full page app the event handler is not working as expected. appLoad function is never getting triggered
Below is the code:
useLayoutEffect(()=>{
const fn =async()=>{
let client = await app?.initialized();
client.events.on(“app.activated”, () => appLoad(client));
}
fn();
}