I'm using textComponentProps to change the text color based on a light/dark theme in my app like this:
textComponentProps={
{
style: {
color: themeStore.theme == "light" ? "#333" : "#d7d7d7"
}
}
}
But when my theme changes, htmlview isn't updating with the new styles