You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error happens sporadically when loading the page (in a Next.js app), so it's hard to reproduce. Nonetheless, it's happening and it's being reported in our Sentry environment.
Example usage:
import Vimeo from '@u-wave/react-vimeo';
import VimeoErrorBoundary from './classes/VimeoErrorBoundary';
export default function VimeoVideo({
videoId
}) {
return <VimeoErrorBoundary>
{
videoId &&
<Vimeo
id='videoContainer'
className='video'
video={videoId}
/>
}
</VimeoErrorBoundary>;
}
Could it be related to API limits?
The text was updated successfully, but these errors were encountered:
This error happens sporadically when loading the page (in a Next.js app), so it's hard to reproduce. Nonetheless, it's happening and it's being reported in our Sentry environment.
Example usage:
Could it be related to API limits?
The text was updated successfully, but these errors were encountered: