Skip to content

Commit

Permalink
Merge pull request #8767 from Expensify/cmartins-fixConst
Browse files Browse the repository at this point in the history
Fix MAX_COMMENT_LENGTH const
  • Loading branch information
luacmartins authored Apr 25, 2022
2 parents 8665582 + c329eb9 commit 65432d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CONST.js
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ const CONST = {
},

// There's a limit of 60k characters in Auth - https://github.com/Expensify/Auth/blob/198d59547f71fdee8121325e8bc9241fc9c3236a/auth/lib/Request.h#L28
MAX_COMMENT_LENGTH: 60_000,
MAX_COMMENT_LENGTH: 60000,
};

export default CONST;

0 comments on commit 65432d6

Please sign in to comment.