Skip to content

Commit 566f340

Browse files
committed
fix prettier
1 parent 9c9168a commit 566f340

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/components/ButtonWithDropdownMenu

src/components/ButtonWithDropdownMenu/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import * as Expensicons from '@components/Icon/Expensicons';
88
import PopoverMenu from '@components/PopoverMenu';
99
import useKeyboardShortcut from '@hooks/useKeyboardShortcut';
1010
import useResponsiveLayout from '@hooks/useResponsiveLayout';
11+
import useSafeAreaPaddings from '@hooks/useSafeAreaPaddings';
1112
import useStyleUtils from '@hooks/useStyleUtils';
1213
import useTheme from '@hooks/useTheme';
1314
import useThemeStyles from '@hooks/useThemeStyles';
1415
import useWindowDimensions from '@hooks/useWindowDimensions';
1516
import mergeRefs from '@libs/mergeRefs';
1617
import CONST from '@src/CONST';
1718
import type {AnchorPosition} from '@src/styles';
18-
import useSafeAreaPaddings from '@hooks/useSafeAreaPaddings';
1919
import type {ButtonWithDropdownMenuProps} from './types';
2020

2121
type 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) {

0 commit comments

Comments
 (0)