Olly
Olly
Proposal This problem occurs because the alternateText is assigned to use the single user login in OptionsListUtils: https://github.com/Expensify/App/blob/1ff9206ec817a44a368125fec9910bfd75ce0157/src/libs/OptionsListUtils.js#L325-L327 If the desired result is a `Comma separated emails of group members...
@eVoloshchak Ah strange, it is no longer working for me either after pulling the latest updates. Thanks for having a look at it anyway. I agree getOptionData is the better...
Thanks guys. Has an UpWork job been created for this? I can't see it anywhere. PR should be ready within the next 24 hours.
I had to make some aesthetic changes to make the code play nice with ESLint. Let me know if this looks okay and I'll proceed with the PR. Thanks. ```js...
@eVoloshchak `const formattedText = _.isEmpty(pronouns) ? displayName : '${displayName} (${pronouns})';` You would prefer it this way round?
Proposal OptionsListUtils removes full stops from the search string here: https://github.com/Expensify/App/blob/b2acb8f48e6ca05cbce64771e9499f85c4872018/src/libs/OptionsListUtils.js#L375-L382 If we don't want this functionality we can simply remove it: ```diff const searchWords = _.map( searchValue - .replace(/\./g,...
Proposal The root cause of this is a bug in [react-native-picker-select](https://github.com/lawnstarter/react-native-picker-select), as you can see from the following test in which I isolated the module: https://user-images.githubusercontent.com/11609254/199744693-c35e3ce2-4ae7-4bb6-87e0-ea8e554a5238.mp4 The modal blinking occurs...
Proposal The root cause of this issue is that on smaller screens, despite being on the Concierge route the drawer is open leaving the user on the sidebar screen. This...
@eVoloshchak If you open expensify web you'll notice it navigates you to a report route by default, if we were to make the drawer close on every report route the...
Proposal This issue occurs because in the FAB menu we [check](https://github.com/Expensify/App/blob/a341945917aa39adcc9ecad8e6a6d74d6a95f2c4/src/pages/home/sidebar/SidebarScreen/BaseSidebarScreen.js#L172) if the user is admin of a policy with the type `FREE` in order to determine whether to add...