Skip to content

Commit 4df147c

Browse files
committed
revert const change and fix desktop styles
1 parent 2518e21 commit 4df147c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CONST.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ const CONST = {
746746
},
747747

748748
// There's a limit of 60k characters in Auth - https://github.com/Expensify/Auth/blob/198d59547f71fdee8121325e8bc9241fc9c3236a/auth/lib/Request.h#L28
749-
MAX_COMMENT_LENGTH: 1,
749+
MAX_COMMENT_LENGTH: 60000,
750750

751751
ONYX: {
752752
METHOD: {

src/pages/home/report/ReportActionCompose.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ class ReportActionCompose extends React.Component {
674674
</View>
675675
</View>
676676
<View style={[styles.flexRow, styles.justifyContentBetween, styles.alignItemsCenter]}>
677-
{!this.props.isSmallScreenWidth && <OfflineIndicator containerStyles={[styles.chatItemComposeSecondaryRowOffset]} />}
677+
{!this.props.isSmallScreenWidth && <OfflineIndicator containerStyles={[styles.chatItemComposeSecondaryRow]} />}
678678
<ReportTypingIndicator reportID={this.props.reportID} containerStyles={[styles.chatItemComposeSecondaryRowOffset]} />
679679
<ExceededCommentLength commentLength={this.comment.length} />
680680
</View>

0 commit comments

Comments
 (0)