Finished editing links

This commit is contained in:
Isaac Wise
2024-02-10 16:23:59 -06:00
parent e1ef638f0e
commit 080be856cc
8 changed files with 61 additions and 119 deletions
@@ -7,12 +7,12 @@ import CreatableSelect from "react-select/creatable";
type Props = {
onChange: any;
defaultValue:
| {
label: string;
value?: number;
}
| undefined;
defaultValue?:
| {
label: string;
value?: number;
}
| undefined;
};
export default function CollectionSelection({ onChange, defaultValue }: Props) {
@@ -51,7 +51,7 @@ export default function CollectionSelection({ onChange, defaultValue }: Props) {
options={options}
styles={styles}
defaultValue={defaultValue}
// menuPosition="fixed"
// menuPosition="fixed"
/>
);
}