Revert "fix: Country Dropdown not closing with AddressInput " (#8174)
Reverts twentyhq/twenty#8147
This commit is contained in:
committed by
GitHub
parent
31ecaf2a0d
commit
d887a857ca
@ -71,7 +71,6 @@ export const Dropdown = ({
|
||||
closeDropdown,
|
||||
dropdownWidth,
|
||||
setDropdownPlacement,
|
||||
resetDropdown,
|
||||
} = useDropdown(dropdownId);
|
||||
|
||||
const offsetMiddlewares = [];
|
||||
@ -144,12 +143,6 @@ export const Dropdown = ({
|
||||
[closeDropdown],
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
resetDropdown();
|
||||
};
|
||||
}, [resetDropdown]);
|
||||
|
||||
return (
|
||||
<DropdownScope dropdownScopeId={getScopeIdFromComponentId(dropdownId)}>
|
||||
<div ref={containerRef} className={className}>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { useRecoilCallback, useRecoilState } from 'recoil';
|
||||
import { useRecoilState } from 'recoil';
|
||||
|
||||
import { useDropdownStates } from '@/ui/layout/dropdown/hooks/internal/useDropdownStates';
|
||||
import { usePreviousHotkeyScope } from '@/ui/utilities/hotkey/hooks/usePreviousHotkeyScope';
|
||||
@ -56,16 +56,6 @@ export const useDropdown = (dropdownId?: string) => {
|
||||
}
|
||||
};
|
||||
|
||||
const resetDropdown = useRecoilCallback(
|
||||
({ reset }) =>
|
||||
() => {
|
||||
reset(dropdownHotkeyScopeState);
|
||||
reset(dropdownWidthState);
|
||||
reset(isDropdownOpenState);
|
||||
},
|
||||
[dropdownHotkeyScopeState, dropdownWidthState, isDropdownOpenState],
|
||||
);
|
||||
|
||||
return {
|
||||
scopeId,
|
||||
isDropdownOpen,
|
||||
@ -76,6 +66,5 @@ export const useDropdown = (dropdownId?: string) => {
|
||||
setDropdownWidth,
|
||||
dropdownPlacement,
|
||||
setDropdownPlacement,
|
||||
resetDropdown,
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user