Aimane Chnaif

Results 118 comments of Aimane Chnaif

### **Proposal** **RCA:** https://github.com/Expensify/App/blob/eb26cc45f36a01eb4bff7706ea13f0a77d015b5d/src/pages/home/report/ReportFooter.js#L89-L103 This happens because when composer expanded, the parent view (`OfflineWithFeedback`) doesn't stretch to full height so `this.props.isComposerFullSize && styles.chatItemFullComposeRow` in `ReportActionCompose` container style isn't applied so...

@Puneet-here's proposal didn't explain that those styles needed only when composer expanded (`this.props.isComposerFullSize === true`). WIthout this condition, it works on web but breaks style on mobile. Since this is...

This is a regression from https://github.com/Expensify/App/pull/10504 Reverting this [PR](https://github.com/Expensify/App/pull/10504) fixes this [GH](https://github.com/Expensify/App/issues/11486) but safari wrapped issue (Un / pin) still remaining

### **Proposal** This console error came from `react-native-reanimated` package. Current version is `3.0.0-rc.3` It's fixed in `3.0.0-rc.4` or newer **Solution** We can use any newer versions: `3.0.0-rc.4` or `3.0.0-rc.5` or...

@aneequeahmad your solution in this [proposal](https://github.com/Expensify/App/issues/11903#issuecomment-1313056883) causes regression on native which is already working. ![console warning](https://user-images.githubusercontent.com/96077027/202030350-67fdb4e0-62e7-491a-ba97-8bd48bb3e280.png)

@aneequeahmad > it is given the type number this is what `anchor` is set to > it is expecting an object this is what you defined in PropTypes Please test...

> Having said that setting it to object fixes the issue on Web and doesn't show console error on native platforms. Did you really test this on native?

Before explaining more, please attach screenshot of what console shows after adding `console.log(typeof this.props.anchor)` in `render()` on web and iOS respectively