Remove full name input from nda page

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-03-05 11:19:19 +04:00
parent 46d8450ead
commit e856817d2b
12 changed files with 20 additions and 100 deletions

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<d9088a212dfa65ed0a833670cf8bc6d4>>
* @generated SignedSource<<426a1227dea8949a1d77d75edf05437a>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -26,7 +26,7 @@ export type PeopleGraphPaginatedFragment$data = {
readonly emailAddress: string;
readonly fullName: string;
readonly id: string;
readonly kind: ProfileKind;
readonly kind: ProfileKind | null | undefined;
readonly position: string | null | undefined;
};
}>;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<1eea90ca68f7381b881c68f0489837cb>>
* @generated SignedSource<<e88375170021c3387ee6a5491bc60e52>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -20,7 +20,7 @@ export type PersonFormFragment$data = {
readonly emailAddress: string;
readonly fullName: string;
readonly id: string;
readonly kind: ProfileKind;
readonly kind: ProfileKind | null | undefined;
readonly membership: {
readonly role: MembershipRole;
};

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<7889e38e185230a2c5b41c3b0fb73cca>>
* @generated SignedSource<<8ef1dc9de9a669636884e4f60f7f39fc>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -18,7 +18,7 @@ export type CreateUserInput = {
contractStartDate?: string | null | undefined;
emailAddress: string;
fullName: string;
kind: ProfileKind;
kind?: ProfileKind | null | undefined;
organizationId: string;
position?: string | null | undefined;
role: MembershipRole;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<8563f3b122bb8d5b6c2e5e7354a0a0c8>>
* @generated SignedSource<<dc04e9218150e42554925f8c39d83b41>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -16,7 +16,7 @@ export type UpdateUserInput = {
contractStartDate?: string | null | undefined;
fullName: string;
id: string;
kind: ProfileKind;
kind?: ProfileKind | null | undefined;
position?: string | null | undefined;
};
export type PersonForm_updateMutation$variables = {