@avs/go-react 0.13.71754 → 0.13.71756

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avs/go-react",
3
- "version": "0.13.71754",
3
+ "version": "0.13.71756",
4
4
  "description": "React wrapper for AVS/Go web components",
5
5
  "keywords": [
6
6
  "visualization",
package/src/AvsGoInfo.jsx CHANGED
@@ -40,13 +40,13 @@ export const AvsGoInfo = forwardRef(({
40
40
 
41
41
  function handleInfo(e) {
42
42
  if (onInfo) {
43
- onInfo(e.detail);
43
+ onInfo(e);
44
44
  }
45
45
  }
46
46
 
47
47
  function handleError(e) {
48
48
  if (onError) {
49
- onError(e.detail);
49
+ onError(e);
50
50
  }
51
51
  }
52
52