Fixed bug with collectibles scans endpointchanges
This commit is contained in:
parent
9e7d020ad7
commit
1fb10535a6
|
@ -306,8 +306,8 @@ export const getEndpointChangesForCollectible = ({
|
||||||
|
|
||||||
// TODO: Add other changes for cover, obi, dustjacket...
|
// TODO: Add other changes for cover, obi, dustjacket...
|
||||||
|
|
||||||
scans.pages?.forEach((_, indexNumber) => {
|
scans.pages?.forEach(({ page }) => {
|
||||||
const index = indexNumber.toString();
|
const index = page.toString();
|
||||||
changes.push({
|
changes.push({
|
||||||
type: SDKEndpointNames.getCollectibleScanPage,
|
type: SDKEndpointNames.getCollectibleScanPage,
|
||||||
slug,
|
slug,
|
||||||
|
|
Loading…
Reference in New Issue