Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/MessagesRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function MessagesRow({messages = {}, type, onDismiss = () => {}, containerStyles
}

return (
<View style={[styles.flexRow, styles.alignItemsCenter, styles.mb4, styles.messagesRowHeight, containerStyles]}>
<View style={[styles.flexRow, styles.alignItemsCenter, containerStyles]}>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@francoisl let's update below line to errorRowStyles={[styles.ph5, styles.mb4]} in addition to this removal.
I confirmed that this doesn't break what they fixed.
styles.messagesRowHeight is redundant, no need.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated. Thanks for the review. Would you be able to also test for #78331 please? I can't get my IOS simulator to work anymore

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On it

<DotIndicatorMessage
dismissError={dismissError}
style={styles.flex1}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function WorkspaceCompanyCardTableItem({

return (
<OfflineWithFeedback
errorRowStyles={styles.ph5}
errorRowStyles={[styles.ph5, styles.mb4]}
errors={errors}
pendingAction={pendingAction}
onClose={resetFailedCompanyCardAssignment}
Expand Down
Loading