The ERROR_OCCURRED event is not triggered when a dashboard URL expires (401 error), and the user requests this event to fire in such cases.
Is there a error event that fired when dashboard URL is expired? We are trying to catch the **ERROR_OCCURRED** when the dashboard URL is expired with 401 I am using v2 of the SDK which fires an onMessage event, but nothing is fired when the dashboard URL is expired with 401. Here is some sample code taken from the example in the docs but no **changeEvent** is logged in contentOptions. ``` import { useEffect, useState } from "react"; import { useLocation, useNavigate } from "react-router-dom"; const QuickSightEmbedding = require("amazon-quicksight-embedding-sdk"); const QuickSightReport = () => { useEffect(() => { const initLoad = async () => { const embeddingContext = await QuickSightEmbedding.createEmbeddingContext(); const { embedDashboard } = embeddingContext; var containerDiv = document.getElementById("embeddingContainer"); console.log('xxxx', containerDiv) if (containerDiv) { containerDiv.innerHTML = ""; }