Compare commits

..

No commits in common. "170ff70b7a01afbaae35f254eb652d6c775653d1" and "0a5097c5c0ecfca01d094ee07b0da20616c07d94" have entirely different histories.

2 changed files with 3 additions and 22 deletions

View File

@ -3219,12 +3219,7 @@ export type GetFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -3289,12 +3284,7 @@ export type VideoCardFieldsFragment = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
};
@ -3368,12 +3358,7 @@ export type GetVideoFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{
__typename?: "UserGQL";
id: number;
username: string;
profileImageUri?: string | null;
}> | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -5075,8 +5060,6 @@ export const VideoCardFieldsFragmentDoc = gql`
profileImageUri
followers {
id
username
profileImageUri
}
}
reaction

View File

@ -66,8 +66,6 @@ fragment VideoCardFields on VideoGQL {
profileImageUri
followers {
id
username
profileImageUri
}
}
reaction