@myinterview/widget-react 1.1.30-development-5468e2f → 1.1.30-development-fbd8b87
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/dist/cjs/index.js +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +9 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -48398,6 +48398,11 @@ const Main = ({ widgetConfig, setShouldShowWaterMark, myinterviewRef, isWidgetMi
|
|
|
48398
48398
|
alignment: isRtl(job === null || job === void 0 ? void 0 : job.language) ? 'left' : 'right',
|
|
48399
48399
|
});
|
|
48400
48400
|
}
|
|
48401
|
+
SentryHub.configureScope((scope) => {
|
|
48402
|
+
scope.setTags({
|
|
48403
|
+
company_id: candidate === null || candidate === void 0 ? void 0 : candidate.company_id,
|
|
48404
|
+
});
|
|
48405
|
+
});
|
|
48401
48406
|
}, [candidate, job === null || job === void 0 ? void 0 : job.language]);
|
|
48402
48407
|
const setBackgroundOpacity = () => {
|
|
48403
48408
|
var _a;
|
|
@@ -48586,7 +48591,10 @@ const Widget = forwardRef(({ candidate, job, video, config, disabled = false, bu
|
|
|
48586
48591
|
")"))), [styleUrls]);
|
|
48587
48592
|
useEffect(() => {
|
|
48588
48593
|
SentryHub.configureScope((scope) => {
|
|
48589
|
-
scope.setUser(
|
|
48594
|
+
scope.setUser({
|
|
48595
|
+
email: candidate.email,
|
|
48596
|
+
});
|
|
48597
|
+
scope.setTags(Object.assign({}, (isIphone && { iphoneModel: getIPhoneModel() })));
|
|
48590
48598
|
});
|
|
48591
48599
|
}, [candidate.email]);
|
|
48592
48600
|
useEffect(() => {
|