Fix accidental unwrapped strings (#1826)
This commit is contained in:
parent
d715246e26
commit
a4baf14e4b
4 changed files with 7 additions and 7 deletions
|
@ -51,14 +51,14 @@ export const ExternalEmbed = ({
|
|||
{link.meta.description}
|
||||
</Text>
|
||||
)}
|
||||
{!!link.meta?.error && (
|
||||
{link.meta?.error ? (
|
||||
<Text
|
||||
type="sm"
|
||||
numberOfLines={2}
|
||||
style={[{color: palError.colors.background}, styles.description]}>
|
||||
{link.meta.error}
|
||||
</Text>
|
||||
)}
|
||||
) : null}
|
||||
</View>
|
||||
<TouchableOpacity
|
||||
style={styles.removeBtn}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue