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
I often have long-running timers. After a timer has been running for a long time I will start to get RangeError: Property storage exceeds 196607 properties errors on iOS.
I often have long-running timers. After a timer has been running for a long time I will start to get
RangeError: Property storage exceeds 196607 properties
errors on iOS.This seems to be due to Hermes setting an arbitrary number of object keys. The recommendation in the RN issue tracker is to use a
Map
instead ofObject
.I've patched this locally. For anyone else running into the same thing... here's a diff...
The text was updated successfully, but these errors were encountered: