@myinterview/widget-react 1.1.30-development-13b0768 → 1.1.30-development-3133fb6
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 +4 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -48617,7 +48617,10 @@ const Widget = React.forwardRef(({ candidate, job, video, config, disabled = fal
|
|
|
48617
48617
|
")"))), [styleUrls]);
|
|
48618
48618
|
React.useEffect(() => {
|
|
48619
48619
|
SentryHub.configureScope((scope) => {
|
|
48620
|
-
scope.setUser(
|
|
48620
|
+
scope.setUser({
|
|
48621
|
+
email: candidate.email,
|
|
48622
|
+
});
|
|
48623
|
+
scope.setTags(Object.assign({}, (isIphone && { iphoneModel: getIPhoneModel() })));
|
|
48621
48624
|
});
|
|
48622
48625
|
}, [candidate.email]);
|
|
48623
48626
|
React.useEffect(() => {
|