Skip to content

Commit

Permalink
issue 9485 - move const to correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlor committed Jul 28, 2022
1 parent 648b939 commit 57ba1bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Composer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ import CONST from '../../CONST';
import updateIsFullComposerAvailable from '../../libs/ComposerUtils/updateIsFullComposerAvailable';
import getNumberOfLines from '../../libs/ComposerUtils/index';

const COPY_DROP_EFFECT = 'copy';

const propTypes = {
/** Maximum number of lines in the text input */
maxLines: PropTypes.number,
Expand Down Expand Up @@ -110,6 +108,8 @@ const IMAGE_EXTENSIONS = {
'image/webp': 'webp',
};

const COPY_DROP_EFFECT = 'copy';

/**
* Enable Markdown parsing.
* On web we like to have the Text Input field always focused so the user can easily type a new chat
Expand Down

0 comments on commit 57ba1bd

Please sign in to comment.