Skip to content

Commit

Permalink
refactor: expenses list style
Browse files Browse the repository at this point in the history
  • Loading branch information
kdurek committed Apr 2, 2024
1 parent cac5c48 commit fbafb6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(app)/(expenses)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default async function ExpensesPage() {
}

return (
<Section>
<Section title="Wydatki">
<Expenses user={user} />
</Section>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/expense/expenses-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function ExpensesList({ user, expenses }: ExpensesListProps) {
}

return (
<div className="overflow-hidden rounded-md">
<div className="divide-y divide-muted overflow-hidden rounded-md">
{expenses.map((expense) => (
<ExpensesListCard key={expense.id} expense={expense} user={user} />
))}
Expand Down

0 comments on commit fbafb6a

Please sign in to comment.