- finally fixed custom imput to match what is on backend on sighting amend endpoint
This commit is contained in:
@@ -56,8 +56,13 @@ export type OptionalLaneIDs = {
|
||||
LID3?: string;
|
||||
};
|
||||
|
||||
export type CustomField = {
|
||||
label: string;
|
||||
value: string;
|
||||
};
|
||||
|
||||
export type CustomFields = {
|
||||
customFields?: string[];
|
||||
customFields?: CustomField[];
|
||||
};
|
||||
|
||||
export type InitialValuesFormErrors = {
|
||||
@@ -195,3 +200,8 @@ export type NetworkConfig = {
|
||||
primaryServer?: string;
|
||||
secondaryServer?: string;
|
||||
};
|
||||
|
||||
export type CustomFieldConfig = {
|
||||
label: string;
|
||||
value: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user