You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've had a few people run into this on Discord. The root cause is that crypto.subtle is undefined for http origins. The error message is not the most clear. Might be worth documenting in a README or having a friendlier error message.
The text was updated successfully, but these errors were encountered:
more context from @diehuxx for those not on Discord:
The error is coming from crypto.subtle being undefined when using browser environments with insecure origin. localhost is treated similar to https in some browsers, which is why most people wouldn't run into the issue at first. It's only when they do local networking that it becomes relevant.
Context: https://discord.com/channels/937858703112155166/1130936915038843021/1131012879810842665
Minimal reproduction: https://github.com/tylerami/react-web5-test
We've had a few people run into this on Discord. The root cause is that
crypto.subtle
is undefined for http origins. The error message is not the most clear. Might be worth documenting in a README or having a friendlier error message.The text was updated successfully, but these errors were encountered: