Skip to content

Commit

Permalink
fix subspace visuals on explore page (#6950)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbykolev committed Sep 26, 2024
1 parent adbc0db commit ff2d69c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/core/apollo/generated/apollo-hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3656,15 +3656,15 @@ export const SpaceExplorerSubspaceFragmentDoc = gql`
tagline
displayName
description
cardBanner2: visual(type: CARD) {
cardBanner: visual(type: CARD) {
...VisualUri
}
type
tagset {
id
tags
}
avatar2: visual(type: AVATAR) {
avatar: visual(type: AVATAR) {
...VisualUri
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/core/apollo/generated/graphql-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29553,9 +29553,9 @@ export type SpaceExplorerMemberSpacesQuery = {
displayName: string;
description?: string | undefined;
type?: ProfileType | undefined;
cardBanner2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
cardBanner?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
tagset?: { __typename?: 'Tagset'; id: string; tags: Array<string> } | undefined;
avatar2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
};
context: { __typename?: 'Context'; id: string; vision?: string | undefined };
community: { __typename?: 'Community'; id: string; myMembershipStatus?: CommunityMembershipStatus | undefined };
Expand Down Expand Up @@ -29651,9 +29651,9 @@ export type SpaceExplorerSubspacesQuery = {
displayName: string;
description?: string | undefined;
type?: ProfileType | undefined;
cardBanner2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
cardBanner?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
tagset?: { __typename?: 'Tagset'; id: string; tags: Array<string> } | undefined;
avatar2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
};
context: { __typename?: 'Context'; id: string; vision?: string | undefined };
community: { __typename?: 'Community'; id: string; myMembershipStatus?: CommunityMembershipStatus | undefined };
Expand Down Expand Up @@ -29700,9 +29700,9 @@ export type SpaceExplorerSubspaceFragment = {
displayName: string;
description?: string | undefined;
type?: ProfileType | undefined;
cardBanner2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
cardBanner?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
tagset?: { __typename?: 'Tagset'; id: string; tags: Array<string> } | undefined;
avatar2?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
avatar?: { __typename?: 'Visual'; id: string; uri: string; name: string } | undefined;
};
context: { __typename?: 'Context'; id: string; vision?: string | undefined };
community: { __typename?: 'Community'; id: string; myMembershipStatus?: CommunityMembershipStatus | undefined };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ fragment SpaceExplorerSubspace on Space {
tagline
displayName
description
cardBanner2: visual(type: CARD) {
cardBanner: visual(type: CARD) {
...VisualUri
}
type
tagset {
id
tags
}
avatar2: visual(type: AVATAR) {
avatar: visual(type: AVATAR) {
...VisualUri
}
}
Expand Down

0 comments on commit ff2d69c

Please sign in to comment.