- finally fixed custom imput to match what is on backend on sighting amend endpoint

This commit is contained in:
2025-12-05 12:53:42 +00:00
parent 9208470e53
commit 9e89193747
5 changed files with 108 additions and 44 deletions

View File

@@ -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;
};