Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

minor fix

authored by

João Ferreiro and committed by
Paul Frazee
723bad1a 469b05c4

+3 -3
+3 -3
src/view/com/util/RichText.tsx
··· 28 28 fontSize: 26, 29 29 lineHeight: 30, 30 30 } 31 - return <Text style={[style]}>{text}</Text> 31 + return <Text style={style}>{text}</Text> 32 32 } 33 - return <Text style={[style]}>{text}</Text> 33 + return <Text style={style}>{text}</Text> 34 34 } 35 35 if (!style) style = [] 36 36 else if (!Array.isArray(style)) style = [style] ··· 65 65 key++ 66 66 } 67 67 return ( 68 - <Text style={[style]} numberOfLines={numberOfLines}> 68 + <Text style={style} numberOfLines={numberOfLines}> 69 69 {els} 70 70 </Text> 71 71 )