Skip to content

Commit

Permalink
update constant value
Browse files Browse the repository at this point in the history
  • Loading branch information
suneox committed Jan 19, 2024
1 parent 2babc2d commit 91a3497
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/EmojiPicker/EmojiPickerButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import useThemeStyles from '@hooks/useThemeStyles';
import compose from '@libs/compose';
import getButtonState from '@libs/getButtonState';
import * as EmojiPickerAction from '@userActions/EmojiPickerAction';
import CONST from '@src/CONST';

const propTypes = {
/** Flag to disable the emoji picker button */
Expand Down Expand Up @@ -58,8 +59,8 @@ function EmojiPickerButton(props) {
props.onEmojiSelected,
emojiPopoverAnchor,
{
horizontal: 'right',
vertical: 'bottom',
horizontal: CONST.MODAL.ANCHOR_ORIGIN_HORIZONTAL.RIGHT,
vertical: CONST.MODAL.ANCHOR_ORIGIN_VERTICAL.BOTTOM,
shiftVertical: props.shiftVertical,
},
() => {},
Expand Down

0 comments on commit 91a3497

Please sign in to comment.