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
the key has to always be a string not at int. console always shows warnings.
i fixed on my end like this: keyExtractor (item, index) { return index; }
to keyExtractor (item, index) { return${index}; }
but can someone make this change in this package?
The text was updated successfully, but these errors were encountered:
the key has to always be a string not at int. console always shows warnings.
i fixed on my end like this:
keyExtractor (item, index) { return index; }
to
keyExtractor (item, index) { return
${index}; }
but can someone make this change in this package?
The text was updated successfully, but these errors were encountered: