1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00

Removing dashes from timeout field (#1326)

This commit is contained in:
Jamie Hewitt 2022-04-06 15:31:31 +03:00 committed by GitHub
parent f2e7db0260
commit 9b19aed5ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,9 +65,7 @@ export default function InputElement({
disabled={disabled}
multiple={multiple}
>
{field !== undefined && field.value === '' && (
<option value="">---</option>
)}
{field !== undefined && field.value === '' && <option value="" />}
{sortedOptions &&
(sortedOptions as string[]).map((option: string, index: number) => (
<option key={index} value={option}>