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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View file

@ -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