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
My app using ReactNative 0.47 and encounter the following error on importing deviceLog:
"Cannot read property 'toUpperCase' of undefined'
at line 69 of debug-service.js
This happens because connectionInfo.type is undefined. I've workarounded by checking !type before the check of type === 'none'
if (!type || type === "none") {...}
The text was updated successfully, but these errors were encountered:
My app using ReactNative 0.47 and encounter the following error on importing deviceLog:
"Cannot read property 'toUpperCase' of undefined'
at line 69 of debug-service.js
This happens because connectionInfo.type is undefined. I've workarounded by checking !type before the check of type === 'none'
if (!type || type === "none") {...}
The text was updated successfully, but these errors were encountered: