revert
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
Loewy 2025-02-04 14:41:11 -08:00
parent 021cd35278
commit b9e26243e9
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
} }
} }