Feat/company card fields (#686)

* wip

* Ok

* asd

* Fixed cancel submit

* Renamed

* Fixed
This commit is contained in:
Lucas Bordeau
2023-07-16 04:17:31 +02:00
committed by GitHub
parent 7959308e0b
commit be21392737
35 changed files with 1041 additions and 95 deletions

View File

@ -10,7 +10,7 @@ import {
SortOrder,
} from '~/generated/graphql';
type SelectStringKeys<T> = NonNullable<
export type SelectStringKeys<T> = NonNullable<
{
[K in keyof T]: K extends '__typename'
? never
@ -20,7 +20,7 @@ type SelectStringKeys<T> = NonNullable<
}[keyof T]
>;
type ExtractEntityTypeFromQueryResponse<T> = T extends {
export type ExtractEntityTypeFromQueryResponse<T> = T extends {
searchResults: Array<infer U>;
}
? U