You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the error: Type 'number[]' is not assignable to type 'string | number | readonly string[] | undefined'. Type 'number[]' is not assignable to type 'readonly string[]'. Type 'number' is not assignable to type 'string'.ts(2322)
The text was updated successfully, but these errors were encountered:
here is my option array
options={[
{ value: 408, label: "408 Request Timeout" },
{ value: 403, label: "403 Forbidden" },
{ value: 429, label: "429 Too Many Requests" },
{ value: 500, label: "500 Internal Server Error" },
{ value: 502, label: "502 Bad Gateway" },
{ value: 503, label: "503 Service Unavailable" },
{ value: 504, label: "504 Gateway Timeout" }
]}
MultiSelect
id="StatusCodes"
value={formData.statusCodes}
value={formData.statusCodes}
I get the error: Type 'number[]' is not assignable to type 'string | number | readonly string[] | undefined'. Type 'number[]' is not assignable to type 'readonly string[]'. Type 'number' is not assignable to type 'string'.ts(2322)
The text was updated successfully, but these errors were encountered: