So,I'm fetching html from my server and I render it with library:react-native-render-html
Some parts of the string are rendering fine but some of them are like this :
Here is the code:
<Text style={styles.description}>
{/* <Text>Testing...</Text> */}
{currentPostDetails === null || currentPostDetails === undefined ? (
'Loading...'
) : (
<HTML
html={currentPostDetails.text.replaceAll(
'font-family:',
'"";',
)}
/>
)}
</Text>
Any suggestions please?

htmlprop instead of thesourceone which was listed on the docs. Any reason for this?