Skip to content

Commit

Permalink
chore: fix size
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn authored Jan 7, 2025
1 parent e7279a3 commit 1377108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auto-complete/OptionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const OptionsList = forwardRef<OptionsListRef, OptionsListProps>((props: Options
activeIndexRef.current = tOptions.findIndex((item) => item.text === active);
}, [active, tOptions]);

if (!tOptions.length) return <Empty />;
if (!tOptions.length) return <Empty size="small" />;
return (
<ul className={classes}>
{tOptions.map((item) => {
Expand Down

0 comments on commit 1377108

Please sign in to comment.