Skip to content

Commit

Permalink
Merge pull request #19 from afadil/accounts-collapse
Browse files Browse the repository at this point in the history
fix account spacing
  • Loading branch information
afadil authored Jul 1, 2024
2 parents 1088e9f + 17fd2ec commit b714ce7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/dashboard/accounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ export function Accounts({
{isExpanded && (
<CardContent className="pt-4">
{accountsInCategory.map((account) => (
<AccountSummary key={account.id} account={account} />
<div className="py-4">
<AccountSummary key={account.id} account={account} />
</div>
))}
</CardContent>
)}
Expand Down

0 comments on commit b714ce7

Please sign in to comment.