We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onMessage
See:
webshell/packages/webshell/src/hooks/useWebshell.ts
Line 93 in 60af580
I believe this should be onMessage({ nativeEvent });
onMessage({ nativeEvent });
With the current behavior, what seems to happen is that e.nativeEvent.data does not exist - and that's how it's supposed to work, but e.data does.
e.nativeEvent.data
e.data
The text was updated successfully, but these errors were encountered:
fix: onMessage nativeEvent field
6ec7a20
Fixes formidable-webview#15
d89f11c
Fixes #15
test: add coverage for onMessage nativeEvent field
39e54d7
See #15
Successfully merging a pull request may close this issue.
See:
webshell/packages/webshell/src/hooks/useWebshell.ts
Line 93 in 60af580
I believe this should be
onMessage({ nativeEvent });
With the current behavior, what seems to happen is that
e.nativeEvent.data
does not exist - and that's how it's supposed to work, bute.data
does.The text was updated successfully, but these errors were encountered: