Closed sant3001 closed 1 year ago
This warning is poping up in the console every time and it is coming from src/DefaultNotificationBody/index.ios.js. On line 14 the code should be changed from:
src/DefaultNotificationBody/index.ios.js
top: isIphoneX() && getStatusBarHeight(),
to
top: isIphoneX() ? getStatusBarHeight() : 0,
Thanks a lot for the fix. That warning can be pretty annoying :+1:
I am still getting this warning. When will the patch be relased?
This warning is poping up in the console every time and it is coming from
src/DefaultNotificationBody/index.ios.js
. On line 14 the code should be changed from:to