This commit is contained in:
daniel31x13
2024-08-18 16:39:43 -04:00
parent 2b83522eaa
commit 1260e8c093
10 changed files with 268 additions and 272 deletions
@@ -104,7 +104,7 @@ export default function CollectionSelection({
onChange={onChange}
options={options}
styles={styles}
defaultValue={showDefaultValue && defaultValue}
defaultValue={showDefaultValue ? defaultValue : null}
components={{
Option: customOption,
}}
@@ -120,7 +120,7 @@ export default function CollectionSelection({
onChange={onChange}
options={options}
styles={styles}
defaultValue={showDefaultValue && defaultValue}
defaultValue={showDefaultValue ? defaultValue : null}
components={{
Option: customOption,
}}