in my react native app I get the followinf error: texts strings must be rendered withn a text tag, the error is on this line:
{ root.userStore.work && root.userStore.work != '' && (
<Text allowFontScaling={false} style={{ paddingTop:10,paddingHorizontal:0, color:'rgb(125,125,125)', position:'relative',fontSize:14,fontFamily:'IBMPlexSans-Regular' ,marginBottom:0,alignSelf:'flex-start' }}>{ t('currentCharacters', { characters : calculateWorkRemainingCharacters(root.userStore.work.length)} ) }</Text>
calculateWorkRemainingCharacters function looks like this:
const calculateWorkRemainingCharacters = (currentLength ) => {
let maxLength = 20;
return maxLength - currentLength;
}