Skip to content

Commit

Permalink
Feat: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian0701 committed Sep 25, 2024
1 parent 74494f5 commit c502cec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iSunFA",
"version": "0.8.2+5",
"version": "0.8.2+6",
"private": false,
"scripts": {
"dev": "next dev",
Expand Down
1 change: 1 addition & 0 deletions src/components/voucher/voucher_item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const VoucherItem = ({ isSelecting }: { isSelecting: boolean }) => {
const displayedAccounting = (
<div className="flex flex-col items-center gap-4px py-12px font-semibold text-text-neutral-tertiary">
{accounting.map((account, index) => (
// Deprecated: (20240924 - Julian) array index as key
// eslint-disable-next-line react/no-array-index-key
<p key={index}>{account}</p>
))}
Expand Down

0 comments on commit c502cec

Please sign in to comment.