File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ import * as Expensicons from '@components/Icon/Expensicons';
88import PopoverMenu from '@components/PopoverMenu' ;
99import useKeyboardShortcut from '@hooks/useKeyboardShortcut' ;
1010import useResponsiveLayout from '@hooks/useResponsiveLayout' ;
11+ import useSafeAreaPaddings from '@hooks/useSafeAreaPaddings' ;
1112import useStyleUtils from '@hooks/useStyleUtils' ;
1213import useTheme from '@hooks/useTheme' ;
1314import useThemeStyles from '@hooks/useThemeStyles' ;
1415import useWindowDimensions from '@hooks/useWindowDimensions' ;
1516import mergeRefs from '@libs/mergeRefs' ;
1617import CONST from '@src/CONST' ;
1718import type { AnchorPosition } from '@src/styles' ;
18- import useSafeAreaPaddings from '@hooks/useSafeAreaPaddings' ;
1919import type { ButtonWithDropdownMenuProps } from './types' ;
2020
2121type ButtonWithDropdownMenuRef = {
@@ -82,7 +82,7 @@ function ButtonWithDropdownMenuInner<IValueType>(props: ButtonWithDropdownMenuPr
8282 const nullCheckRef = ( refParam : RefObject < View | null > ) => refParam ?? null ;
8383 const shouldShowButtonRightIcon = ! ! options . at ( 0 ) ?. shouldShowButtonRightIcon ;
8484
85- const { paddingBottom} = useSafeAreaPaddings ( true )
85+ const { paddingBottom} = useSafeAreaPaddings ( true ) ;
8686
8787 useEffect ( ( ) => {
8888 if ( ! dropdownAnchor . current ) {
You can’t perform that action at this time.
0 commit comments