Skip to content

Commit

Permalink
πŸ› Fix unable to batch create short links from class page
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt authored and williamchong committed Feb 26, 2025
1 parent 7bf239f commit 49e78e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/nft-book-store/status/[classId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ function shortenAllLinks () {
try {
sessionStorage.setItem(
'nft_book_press_batch_shorten_url',
convertArrayOfObjectsToCSV(purchaseLinks.value.map(({ channel, ...link }) => ({ key: channel, ...link })))
convertArrayOfObjectsToCSV(purchaseLinks.value.map(({ channel, url }) => ({ key: channel, url })))
)
router.push({ name: 'batch-short-links', query: { print: 1 } })
} catch (error) {
Expand Down

0 comments on commit 49e78e3

Please sign in to comment.