Fix accidental unwrapped strings (#1826)

This commit is contained in:
dan
2023-11-06 22:42:25 +00:00
committed by GitHub
parent d715246e26
commit a4baf14e4b
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -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}
+2 -2
View File
@@ -484,13 +484,13 @@ function CustomHandleForm({
</Text>
</View>
)}
{error && (
{error ? (
<View style={[styles.message, palError.view]}>
<Text type="md-medium" style={palError.text}>
{error}
</Text>
</View>
)}
) : null}
<Button
type="primary"
style={[s.p20, isVerifying && styles.dimmed]}