PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.75
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.75
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
← All changes | scripts/utils/iframe.ts +0 -4 11.0.711.3.75 View file →
@@ -1,6 +1,5 @@
1 1 import { useEffect, useState } from 'react';
2 -import Raven from '../lib/Raven';
3 2
4 3 const IFRAME_DISPLAY_TIMEOUT = 5000;
5 4
6 5 export function useIframeNotRendered(app: string) {
@@ -8,11 +7,8 @@
8 7 useEffect(() => {
9 8 const timer = setTimeout(() => {
10 9 const iframe = document.getElementById(app);
11 10 if (!iframe) {
12 - Raven.captureException(new Error(`Leadin Iframe blocked`), {
13 - fingerprint: ['IFRAME_SETUP_ERROR'],
14 - });
15 11 setIframeNotRendered(true);
16 12 }
17 13 }, IFRAME_DISPLAY_TIMEOUT);
18 14