Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ID-JA committed Jan 5, 2024
1 parent 3f3dd55 commit 1b552a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/@mantine/core/src/components/Combobox/Combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ export function Combobox(_props: ComboboxProps) {
<Popover
opened={store.dropdownOpened}
{...others}
onClose={() => { onClose?.(); store.closeDropdown()}}
onClose={() => {
onClose?.();
store.closeDropdown();
}}
withRoles={false}
unstyled={unstyled}
>
Expand Down

0 comments on commit 1b552a6

Please sign in to comment.