react-native-render-html: “You seem to update the X prop of the Y component in short periods of time…”
Usually, this warning shows up when: The parent (currently App) component updates very often and causes WebDisplay component to re-render. In the provided snippet, every 30 milliseconds; At least one prop passed to RenderHTML is referentially unstable between each re-render. In the provided snippet, tagsStyles reference changes on every re-render. Notice that between every update … Read more