Merge pull request 'Revert previous commit 021cd35278ea74f6971ae021b33ddc1bba020e6d' (#159) from loewy/revert-adding-group into master

Reviewed-on: #159
This commit is contained in:
loewy 2025-02-04 15:42:41 -07:00
commit a5050ed08d
2 changed files with 1 additions and 8 deletions

View File

@ -3930,12 +3930,7 @@ export type GetUserTagsQueryVariables = Exact<{ [key: string]: never }>;
export type GetUserTagsQuery = { export type GetUserTagsQuery = {
__typename?: "Query"; __typename?: "Query";
getUserTags: Array<{ getUserTags: Array<{ __typename?: "TagGQL"; id: number; name: string }>;
__typename?: "TagGQL";
id: number;
name: string;
group?: string | null;
}>;
}; };
export type FollowUserMutationVariables = Exact<{ export type FollowUserMutationVariables = Exact<{
@ -6940,7 +6935,6 @@ export const GetUserTagsDocument = gql`
getUserTags { getUserTags {
id id
name name
group
} }
} }
`; `;

View File

@ -79,7 +79,6 @@ query GetUserTags {
getUserTags { getUserTags {
id id
name name
group
} }
} }