Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
am5815 committed May 7, 2024
1 parent 6062f4c commit 56de9bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 6 additions & 4 deletions src/components/IonicCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ export default function IonicCard({
</>
)} */}
</IonCardHeader>
<IonCardContent style={{
fontSize: "1.2rem",
lineHeight: "1.75rem"
}}>
<IonCardContent
style={{
fontSize: "1.2rem",
lineHeight: "1.75rem",
}}
>
{summary.length > 120
? `${summary.substring(0, 120)}...`
: `${summary}.`}
Expand Down
1 change: 0 additions & 1 deletion src/pages/Discover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ const Discover: React.FC = () => {
setIsExpandedArray={() => handleExpandCard(index)}
index={index}
manual_id={article.attributes.manual_id}

/>
</div>
))}
Expand Down

0 comments on commit 56de9bf

Please sign in to comment.