diff --git a/src/app/WardrobePage/support/AllItemLayersSupportModal.js b/src/app/WardrobePage/support/AllItemLayersSupportModal.js index f585b8b..e5565fa 100644 --- a/src/app/WardrobePage/support/AllItemLayersSupportModal.js +++ b/src/app/WardrobePage/support/AllItemLayersSupportModal.js @@ -19,6 +19,7 @@ import { import { gql, useMutation, useQuery } from "@apollo/client"; import { appearanceLayerFragment, + appearanceLayerFragmentForSupport, itemAppearanceFragment, petAppearanceFragment, } from "../../components/useOutfitAppearance"; @@ -246,7 +247,9 @@ function AllItemLayersSupportModalContent({ remoteIds: $layerRemoteIds ) { id + remoteId ...AppearanceLayerForOutfitPreview + ...AppearanceLayerForSupport } color(id: $colorId) { @@ -281,6 +284,7 @@ function AllItemLayersSupportModalContent({ } ${appearanceLayerFragment} + ${appearanceLayerFragmentForSupport} ${petAppearanceFragment} `, { diff --git a/src/app/components/useOutfitAppearance.js b/src/app/components/useOutfitAppearance.js index 8ccbf1d..7214589 100644 --- a/src/app/components/useOutfitAppearance.js +++ b/src/app/components/useOutfitAppearance.js @@ -226,7 +226,7 @@ export const appearanceLayerFragment = gql` } `; -const appearanceLayerFragmentForSupport = gql` +export const appearanceLayerFragmentForSupport = gql` fragment AppearanceLayerForSupport on AppearanceLayer { id remoteId # HACK: This is for Support tools, but other views don't need it