diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-18 17:09:18 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-18 17:09:18 +0700 |
| commit | ec870d3599647628974867ac6259d7f141ee85d7 (patch) | |
| tree | 72f155350e504fbe03217a8428a917e73275ce56 /src/pages/my/address/create.js | |
| parent | 3a8b28198e51fff0a6f7d97b0ae2f6e0d3b73d47 (diff) | |
Fixing bug edit district and subdistrict, doesnt show old value
Diffstat (limited to 'src/pages/my/address/create.js')
| -rw-r--r-- | src/pages/my/address/create.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/my/address/create.js b/src/pages/my/address/create.js index 5e9aaab8..71f73a64 100644 --- a/src/pages/my/address/create.js +++ b/src/pages/my/address/create.js @@ -121,7 +121,7 @@ export default function CreateAddress() { <Controller name="type" control={control} - render={props => <Select {...props} options={types} />} + render={props => <Select {...props} isSearchable={false} options={types} />} /> <div className="text-caption-2 text-red_r-11 mt-1">{ errors.type?.message }</div> </div> |
