From b9e26243e9a9d1b65d526790b6570a84cc5c7aac Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 4 Feb 2025 14:41:11 -0800 Subject: [PATCH] revert --- src/index.tsx | 8 +------- src/operations/user.gql | 1 - 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index c7954d0..94b2762 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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 } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index a128fc7..8c02d88 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -79,7 +79,6 @@ query GetUserTags { getUserTags { id name - group } }