Fixed missing endpoint for collectibles
This commit is contained in:
parent
47dd0557d5
commit
682e1b1cfb
|
@ -298,6 +298,12 @@ export const getEndpointChangesForCollectible = ({
|
||||||
}: Collectible): EndpointChange[] => {
|
}: Collectible): EndpointChange[] => {
|
||||||
const changes: EndpointChange[] = [];
|
const changes: EndpointChange[] = [];
|
||||||
|
|
||||||
|
changes.push({
|
||||||
|
type: SDKEndpointNames.getCollectible,
|
||||||
|
slug,
|
||||||
|
url: getSDKEndpoint.getCollectible(slug),
|
||||||
|
});
|
||||||
|
|
||||||
if (gallery && gallery.length > 0) {
|
if (gallery && gallery.length > 0) {
|
||||||
changes.push({
|
changes.push({
|
||||||
type: SDKEndpointNames.getCollectibleGallery,
|
type: SDKEndpointNames.getCollectibleGallery,
|
||||||
|
|
Loading…
Reference in New Issue