Skip to content

Commit

Permalink
[fix]バグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Kubosaka committed Feb 22, 2024
1 parent 758247f commit 77feb1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions view/next-project/src/pages/budgets/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default function BudgetList(props: Props) {
<tr
key={budgetView.budget.id}
className={clsx(
index !== budgets.length - 1 && 'border-b',
budgetViews && index !== budgetViews.length - 1 && 'border-b',
'py-3 text-black-600',
)}
>
Expand Down Expand Up @@ -305,7 +305,7 @@ export default function BudgetList(props: Props) {
<tr
key={expenseView.expense.id}
className={clsx(
index !== expenses.length - 1 && 'border-b',
expenseViews && index !== expenseViews.length - 1 && 'border-b',
'py-3 text-black-600',
)}
>
Expand Down

0 comments on commit 77feb1c

Please sign in to comment.