Revert previous commit 021cd35278 #159

Merged
loewy merged 1 commits from loewy/revert-adding-group into master 2025-02-04 15:42:42 -07:00
2 changed files with 1 additions and 8 deletions
Showing only changes of commit b9e26243e9 - Show all commits

View File

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

View File

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