Compare commits

..

No commits in common. "652528a14df3bfdd71e499cbb4a132843c665538" and "8d5cf5ee172cde90b4db202f835077b97b901460" have entirely different histories.

View File

@ -309,11 +309,11 @@ export function getMatchingCardTypes() {
return authRequest({ url: '/api/app/matching/card_types', method: 'GET' })
}
export function createMatchingPreorder({ issue_id, position, coupon_id = 0, item_card_id = 0, use_game_pass = false }) {
export function createMatchingPreorder({ issue_id, position, coupon_id = 0, item_card_id = 0 }) {
return authRequest({
url: '/api/app/matching/preorder',
method: 'POST',
data: { issue_id, position, coupon_id, item_card_id, use_game_pass }
data: { issue_id, position, coupon_id, item_card_id }
})
}