spartaxx.businessmodels 1.0.325 → 1.0.327
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -72,7 +72,7 @@ export interface AccountInfo {
|
|
72
72
|
ReasonCode?: string;
|
73
73
|
AccountStateId?: number;
|
74
74
|
CountyStateName?: string;
|
75
|
-
selectedOption?: { value: string; label: string };
|
75
|
+
selectedOption?: { value: string; label: string } | null;
|
76
76
|
}
|
77
77
|
|
78
78
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -149,9 +149,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
149
149
|
ReasonCode: "",
|
150
150
|
AccountStateId: 0,
|
151
151
|
CountyStateName: "",
|
152
|
-
selectedOption:
|
153
|
-
value: "",
|
154
|
-
label: ""
|
155
|
-
}
|
152
|
+
selectedOption: null
|
156
153
|
};
|
157
154
|
}
|