Compare commits

..

No commits in common. "021cd35278ea74f6971ae021b33ddc1bba020e6d" and "c7ff615fe4e72e927f060fd8172d116ffc7f68ac" have entirely different histories.

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 = {
__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
}
}