Fix accidental unwrapped strings (#1826)
This commit is contained in:
parent
d715246e26
commit
a4baf14e4b
4 changed files with 7 additions and 7 deletions
|
@ -284,13 +284,13 @@ function SavedFeed({feed}: {feed: FeedSourceModel}) {
|
|||
<Text type="lg-medium" style={pal.text} numberOfLines={1}>
|
||||
{feed.displayName}
|
||||
</Text>
|
||||
{feed.error && (
|
||||
{feed.error ? (
|
||||
<View style={[styles.offlineSlug, pal.borderDark]}>
|
||||
<Text type="xs" style={pal.textLight}>
|
||||
Feed offline
|
||||
</Text>
|
||||
</View>
|
||||
)}
|
||||
) : null}
|
||||
</View>
|
||||
{isMobile && (
|
||||
<FontAwesomeIcon
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue