Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Apr 9, 2024
1 parent 05bf2d3 commit 18bf0d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/PreviewCard/PreviewCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@ function PreviewCard({
numberOfLines={3}
style={[globalStyles.subtext, styles.storyDescription]}
>
"{cheerio.load(excerpt.html ?? "").text()}"
"{cheerio.load(excerpt.html ?? '').text()}"
</Text>
</View>
</View>
<View style={styles.tagsContainer}>
<View style={styles.tagsRow}>
{(tags?.length ?? 0) > 0 &&
{(tags?.length ?? 0) > 0 && (
<View style={styles.tag}>
<Text key={tags[0]} style={globalStyles.button1}>
{tags[0]}
</Text>
</View>
}
)}
</View>
<View style={styles.moreTags}>
<Pressable>
Expand Down

0 comments on commit 18bf0d7

Please sign in to comment.