Skip to content

Commit cd3ecde

Browse files
authored
Fix/benefit update link (#93)
1 parent 8cfdfbc commit cd3ecde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/board/benefit/affiliate/affiliate.table.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const AffiliateTable = ({ affiliateList }) => {
2727
{moment(affiliate.created_at).format('YYYY-MM-DD HH:mm')}
2828
</Table.Cell>
2929
<Table.Cell>
30-
<Link href={`/benefit/affiliate/update/${affiliate.id}`}>
30+
<Link href={`/board/benefit/affiliate/update/${affiliate.id}`}>
3131
<Icon name={'edit'} />
3232
</Link>
3333
</Table.Cell>

components/board/benefit/discount/discount.table.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const DiscountTable = ({ discountList }) => {
3131
{moment(discount.created_at).format('YYYY-MM-DD HH:mm')}
3232
</Table.Cell>
3333
<Table.Cell>
34-
<Link href={`/benefit/discount/update/${discount.id}`}>
34+
<Link href={`/board/benefit/discount/update/${discount.id}`}>
3535
<Icon name={'edit'} />
3636
</Link>
3737
</Table.Cell>

0 commit comments

Comments
 (0)