Hi,
i am developing an app. Everything has been really smooth until the last few days: the app icon stopped showing up (and is not visible in the “discover” search either), and the icon:click
listener is never registered.
The following code
export async function init() {
console.log("Starting app");
await miro.board.ui.on("icon:click", async () => {
console.log("Onclick registering");
await miro.board.ui.openPanel({ url: "panel.html", height: 600 });
console.log("Onclick registered");
});
console.log("App started");
}
init();
emits
Starting app
App started
Has anything changed regarding the click event lately?
-Atle