authscape 1.0.586 → 1.0.588
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/AuthScapeApp.js +6 -9
package/index.js
CHANGED
|
@@ -442,7 +442,7 @@ function AuthScapeApp(_ref) {
|
|
|
442
442
|
setErrorToastMessage: setErrorToastMessage
|
|
443
443
|
}))), /*#__PURE__*/_react["default"].createElement(_reactToastify.ToastContainer, null)), loadingLayout && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, loadingLayout(isLoadingShow)), frontEndLoadedState && process.env.microsoftClarityTrackingCode != null && /*#__PURE__*/_react["default"].createElement("script", {
|
|
444
444
|
dangerouslySetInnerHTML: {
|
|
445
|
-
__html: "
|
|
445
|
+
__html: "(function(c,l,a,r,i,t,y){\n c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};\n t=l.createElement(r);t.async=1;t.src=\"https://www.clarity.ms/tag/\"+i;\n y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);\n })(window, document, \"clarity\", \"script\", \"" + process.env.microsoftClarityTrackingCode + "\");"
|
|
446
446
|
}
|
|
447
447
|
}));
|
|
448
448
|
}
|
package/package.json
CHANGED
|
@@ -448,15 +448,12 @@ export function AuthScapeApp ({Component, layout, loadingLayout, pageProps, muiT
|
|
|
448
448
|
{(frontEndLoadedState && process.env.microsoftClarityTrackingCode != null) &&
|
|
449
449
|
<script
|
|
450
450
|
dangerouslySetInnerHTML={{
|
|
451
|
-
__html:
|
|
452
|
-
(function(c,l,a,r,i,t,y){
|
|
453
|
-
c[a]
|
|
454
|
-
t=l.createElement(r);
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
y=l.getElementsByTagName(r)[0];
|
|
458
|
-
y.parentNode.insertBefore(t,y);
|
|
459
|
-
})(window, document, "clarity", "script", "` + process.env.microsoftClarityTrackingCode + `");`,
|
|
451
|
+
__html:
|
|
452
|
+
`(function(c,l,a,r,i,t,y){
|
|
453
|
+
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
|
454
|
+
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
|
455
|
+
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
|
|
456
|
+
})(window, document, "clarity", "script", "` + process.env.microsoftClarityTrackingCode + `");`
|
|
460
457
|
}}
|
|
461
458
|
/>
|
|
462
459
|
}
|