Skip to content

Commit

Permalink
fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-justin committed Oct 17, 2024
1 parent 365a73b commit 8572858
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
isLoading?: boolean;
}

export default function EndowmentSelector({ endow, isLoading }: Props) {
export function EndowmentSelector({ endow, isLoading }: Props) {
const [params, setParams] = useSearchParams();
const [searchText, setSearchText] = useState("");

Expand Down Expand Up @@ -51,4 +51,4 @@ export default function EndowmentSelector({ endow, isLoading }: Props) {
<Options searchText={searchText} />
</Combobox>
);
};
}

0 comments on commit 8572858

Please sign in to comment.