@dubsdotapp/expo 0.4.1 → 0.4.2
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/hooks/useArcadeBridge.ts +3 -2
package/dist/index.js
CHANGED
|
@@ -2893,7 +2893,7 @@ function useArcadeBridge({
|
|
|
2893
2893
|
} catch {
|
|
2894
2894
|
return;
|
|
2895
2895
|
}
|
|
2896
|
-
if (data.dubsArcade !== PROTOCOL_VERSION) return;
|
|
2896
|
+
if (data.dubsArcade !== void 0 && data.dubsArcade !== PROTOCOL_VERSION) return;
|
|
2897
2897
|
switch (data.type) {
|
|
2898
2898
|
case "TAP_PLAY": {
|
|
2899
2899
|
if (canPlayRef.current) {
|