Compare commits

..

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

2 changed files with 0 additions and 9 deletions

View File

@ -3219,7 +3219,6 @@ export type GetFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -3284,7 +3283,6 @@ export type VideoCardFieldsFragment = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
};
@ -3358,7 +3356,6 @@ export type GetVideoFeedQuery = {
id: number;
username: string;
profileImageUri?: string | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
}>;
}>;
@ -5058,9 +5055,6 @@ export const VideoCardFieldsFragmentDoc = gql`
id
username
profileImageUri
followers {
id
}
}
reaction
}

View File

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