Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Invite member checkbox selection behavior #14347

Merged
merged 20 commits into from
Jan 24, 2023
Merged

Conversation

luacmartins
Copy link
Contributor

@luacmartins luacmartins commented Jan 17, 2023

Details

Allows users to select every member of a workspace and displays an inline error if they select themselves of the Workspace owner.

Fixed Issues

$ #13769

Tests

  1. Create a Workspace + > New Workspace
  2. Invite a few users to it Settings > Workspace > Manage members > Invite
  3. In the Manage members page, use the Select all checkbox to select all users
  4. Verify that all users, except for yourself and the workspace owner are selected
  5. Verify that you can manually select yourself or the workspace owner and that you see an error
  6. Verify that tapping the Remove button doesn't work if you have an error
  7. Unselect yourself
  8. Verify that you can remove the other selected members
  • Verify that no errors appear in the JS console

Offline tests

N/A

QA Steps

Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android / native
    • Android / Chrome
    • iOS / native
    • iOS / Safari
    • MacOS / Chrome / Safari
    • MacOS / Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is correct English and approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Web
web.mov
Mobile Web - Chrome
chrome.mov
Mobile Web - Safari
safari.mov
Desktop
desktop.mov
iOS
ios.mov
Android
android.mov

@luacmartins luacmartins self-assigned this Jan 17, 2023
@luacmartins luacmartins changed the title rm canBeRemoved var Fix Invite member checkbox selection behavior Jan 17, 2023
@luacmartins luacmartins marked this pull request as ready for review January 18, 2023 00:04
@luacmartins luacmartins requested a review from a team as a code owner January 18, 2023 00:04
@melvin-bot melvin-bot bot requested review from rushatgabhane and sketchydroide and removed request for a team January 18, 2023 00:04
@melvin-bot
Copy link

melvin-bot bot commented Jan 18, 2023

@sketchydroide @rushatgabhane One of you needs to copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@rushatgabhane
Copy link
Member

So for consistency, I think that we should allow the user to select any checkbox they want, but show an error when they try to submit it. That will remove the growl and UI/UX inconsistencies.

I agree with this solution for the problem because it resonates with allowing a user to input anything (just like form).

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

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

Possibly non-blocking

Problem: A user that cannot be removed is selected. When the error message is off-screen, or we scroll away from the error message.
On clicking remove nothing happens and there is no feedback on what's wrong.

Solution: scroll to the first error message on clicking remove.

screen-20230119-031936.mp4

rushatgabhane

This comment was marked as outdated.

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

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

Bug: Pressing select all unchecks non-removable users.

Steps:

  1. Select yourself
  2. Press select all

Expected: All users including yourself are checked
Actual: All users excluding yourself are checked

screen-20230119-033138.mp4

@luacmartins
Copy link
Contributor Author

@rushatgabhane when I changed the logic for the Select all button, I actually thought of that behavior more as a feature than a bug. IMO the Select all button should still just select all removable members (and leave non-removable members unselected). Pressing it while we have non-removable members selected also de-selects those members which fixes errors for the user.

We can discuss this behavior in Slack though!

@luacmartins
Copy link
Contributor Author

Asked in Slack

@luacmartins
Copy link
Contributor Author

luacmartins commented Jan 19, 2023

@rushatgabhane from the Slack thread, it seems like we will keep the current behavior, i.e. Select all should deselect non-removable members as well and fix the error for the user. So the above is not a bug, but the expected behavior.

@luacmartins
Copy link
Contributor Author

@rushatgabhane's comment was addressed above. This is ready for review!

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

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

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android / native
    • Android / Chrome
    • iOS / native
    • iOS / Safari
    • MacOS / Chrome / Safari
    • MacOS / Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is correct English and approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Web
Screen.Recording.2023-01-20.at.11.20.06.PM.mov
Mobile Web - Chrome
WhatsApp.Video.2023-01-20.at.23.22.58.mp4
Mobile Web - Safari
Screen.Recording.2023-01-20.at.11.23.18.PM.mov
Desktop
Screen.Recording.2023-01-20.at.11.26.25.PM.mov
iOS
Screen.Recording.2023-01-20.at.11.30.20.PM.mov
Android
WhatsApp.Video.2023-01-20.at.23.31.57.mp4

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

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

@rushatgabhane
Copy link
Member

So the above is not a bug, but the expected behavior.

Thanks for confirming @luacmartins

@sketchydroide sketchydroide merged commit a10949d into main Jan 24, 2023
@sketchydroide sketchydroide deleted the cmartins-fixMembersPage branch January 24, 2023 12:21
@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@github-actions
Copy link
Contributor

Performance Comparison Report 📊

Significant Changes To Duration

There are no entries

Meaningless Changes To Duration

Show entries
Name Duration
App start TTI 690.869 ms → 699.453 ms (+8.585 ms, +1.2%)
Open Search Page TTI 607.523 ms → 608.678 ms (+1.155 ms, ±0.0%)
App start runJsBundle 196.613 ms → 197.625 ms (+1.012 ms, +0.5%)
App start regularAppStart 0.021 ms → 0.015 ms (-0.006 ms, -28.5%) 🟢
App start nativeLaunch 20.333 ms → 20.281 ms (-0.052 ms, ±0.0%)
Show details
Name Duration
App start TTI Baseline
Mean: 690.869 ms
Stdev: 29.522 ms (4.3%)
Runs: 635.2817299999297 638.9912730000215 643.3533369998913 650.3096529999748 650.7924770000391 655.5727669999469 670.247689000098 670.2904610000551 671.4651560001075 672.126086999895 674.4335739999078 682.3604840000626 683.313950000098 689.5313069999684 691.7631739999633 693.7668800000101 694.2675360001158 695.35848299996 696.6899939998984 705.2861379999667 706.3816549999174 711.6630810000934 714.9444450000301 717.9339030000847 720.3082910000812 722.1657600000035 726.5726580000482 728.651996999979 731.699006000068 735.0686510000378 736.335020000115

Current
Mean: 699.453 ms
Stdev: 43.178 ms (6.2%)
Runs: 629.54091900005 645.084186000051 648.2185480000917 648.4540669999551 649.1249120000284 653.4879280000459 669.4644949999638 671.452646000078 671.5783180000726 673.1511750000063 682.532036999939 683.1141399999615 683.7751949999947 686.0070279999636 689.5544300000183 690.7170329999644 691.8172850001138 692.9011909998953 693.5641240000259 694.7286209999584 700.2821889999323 709.6216029999778 719.7624870000873 724.3367409999482 726.8011060000863 727.2118649999611 729.1371039999649 751.5358299999498 766.4757739999332 776.5850579999387 795.5230239999946 806.9694300000556
Open Search Page TTI Baseline
Mean: 607.523 ms
Stdev: 25.376 ms (4.2%)
Runs: 572.7152509998996 573.5843510001432 575.0385330000427 577.4955240001436 579.3475340001751 583.4147540000267 583.5160729999188 586.1807049999479 588.8463540000375 589.5588790001348 593.5635179998353 593.5978190000169 595.9767249999568 597.2777509998996 597.2943520001136 597.6359049999155 597.644125000108 608.8845220000949 609.168008999899 610.364135999931 613.1656910001766 620.6225590000395 621.1937259999104 624.1593019999564 625.6417239999864 631.4543059999123 639.0970059998799 641.3813889999874 644.9012050000019 647.6060799998231 658.9264739998616 661.475626999978

Current
Mean: 608.678 ms
Stdev: 25.037 ms (4.1%)
Runs: 571.7552499999292 571.7595619999338 574.3596189999953 578.2134200001601 581.6168619999662 585.2422700000461 585.266317000147 590.7610679999925 591.1824950000737 594.039511000039 595.3495279999916 596.9188650001306 597.0337730001193 599.1270749999676 599.9895430000033 601.3839930000249 602.2039399999194 605.8827319999691 610.2574060000479 610.3354079998098 612.5041100000963 613.5907789999619 617.5799970000517 621.5651449998841 622.3636479999404 627.4508060000371 631.1977949999273 634.6840409999713 637.9302580000367 639.1903490000404 651.9034830001183 663.5398760000244 670.1964529999532
App start runJsBundle Baseline
Mean: 196.613 ms
Stdev: 21.685 ms (11.0%)
Runs: 159 162 166 167 168 172 173 177 183 183 184 185 194 195 198 200 201 203 207 208 208 210 211 215 215 216 217 221 221 228 248

Current
Mean: 197.625 ms
Stdev: 22.541 ms (11.4%)
Runs: 161 165 171 173 176 178 179 179 183 183 185 185 186 186 191 194 195 196 197 202 202 204 208 210 212 217 218 227 232 233 238 258
App start regularAppStart Baseline
Mean: 0.021 ms
Stdev: 0.002 ms (9.6%)
Runs: 0.018148000119253993 0.018757999874651432 0.018798999954015017 0.018880000105127692 0.019165000063367188 0.01920600002631545 0.0194089999422431 0.019409000175073743 0.0197350000962615 0.01989799994044006 0.02010100008919835 0.020182000007480383 0.020223000086843967 0.020385999931022525 0.020426000002771616 0.020549000008031726 0.020629999926313758 0.020995999919250607 0.02099600015208125 0.021036999998614192 0.02140299999155104 0.021525000222027302 0.021564999828115106 0.021646999986842275 0.022176000056788325 0.02343699987977743 0.023681000107899308 0.024861000012606382 0.02510600001551211 0.026733000064268708

Current
Mean: 0.015 ms
Stdev: 0.001 ms (4.7%)
Runs: 0.013794000027701259 0.01395700010471046 0.014119999948889017 0.01424099993892014 0.014283000025898218 0.014322999864816666 0.0143630001693964 0.014404000015929341 0.014404000015929341 0.014525999780744314 0.014770000008866191 0.014771000016480684 0.014811000088229775 0.014973999932408333 0.014973999932408333 0.015014000004157424 0.015054999850690365 0.01509599993005395 0.01509599993005395 0.015177000081166625 0.015177999855950475 0.015420999843627214 0.015461999922990799 0.015625 0.015625 0.01566500007174909 0.015705999918282032 0.015949999913573265 0.016235999995842576 0.016967999981716275
App start nativeLaunch Baseline
Mean: 20.333 ms
Stdev: 2.181 ms (10.7%)
Runs: 17 18 18 18 18 19 19 19 19 19 19 19 19 20 20 20 20 20 20 20 21 21 22 22 22 22 23 25 25 26

Current
Mean: 20.281 ms
Stdev: 1.972 ms (9.7%)
Runs: 18 18 18 18 18 18 18 19 19 19 19 19 19 20 20 20 20 20 20 21 21 21 21 21 22 22 22 22 22 24 24 26

JediWattson added a commit to JediWattson/App that referenced this pull request Jan 25, 2023
commit b355edc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 24 22:03:59 2023 -0500

    Squashed commit of the following:

    commit 811dd58
    Merge: 6f70a7d f133eb4
    Author: Chris Kosuke Tseng <ctseng@expensify.com>
    Date:   Tue Jan 24 15:19:32 2023 -0800

        Merge pull request Expensify#14507 from s77rt/hoverable-onblur

        Fixed regression on Hoverable blur event

    commit 6f70a7d
    Merge: 4ddb47e 3392ff1
    Author: Aldo Canepa Garay <87341702+aldo-expensify@users.noreply.github.com>
    Date:   Tue Jan 24 13:56:15 2023 -0800

        Merge pull request Expensify#14409 from margelo/fix/scroll-to-picker-regression

        Fix: Scroll to picker regression

    commit 4ddb47e
    Merge: c2ff5f8 93199c4
    Author: Vit Horacek <36083550+mountiny@users.noreply.github.com>
    Date:   Tue Jan 24 18:47:32 2023 +0000

        Merge pull request Expensify#14343 from Expensify/vit-updateArchiveMessageForAdmin

        Add closed report action optimistically when workspace is closed

    commit c2ff5f8
    Merge: 25b47da 73d23d8
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Tue Jan 24 19:41:45 2023 +0100

        Merge pull request Expensify#14440 from Expensify/ionatan_fixcurrencysearch

        Fix currency search

    commit 25b47da
    Merge: 614da95 378dffc
    Author: Jack Nam <30609178+thienlnam@users.noreply.github.com>
    Date:   Tue Jan 24 10:35:53 2023 -0800

        Merge pull request Expensify#14483 from abdulrahuman5196/add-payment-delay

    commit 614da95
    Merge: 4d86f17 559df8b
    Author: Yuwen Memon <yuwen@expensify.com>
    Date:   Tue Jan 24 10:21:33 2023 -0800

        Merge pull request Expensify#14400 from Ollyws/issue-14355

        Fix for: App crashes when splitting a bill offline

    commit 4d86f17
    Merge: a10949d bb3a7d1
    Author: Cristi Paval <cristi@expensify.com>
    Date:   Tue Jan 24 18:33:28 2023 +0200

        Merge pull request Expensify#14255 from Expensify/dangrous-embiggenavatars

        Make avatars in chat welcome messages always big

    commit 73d23d8
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Tue Jan 24 16:21:32 2023 +0100

        Update src/pages/iou/IOUCurrencySelection.js

        Co-authored-by: Eugene Voloshchak <copyreading@gmail.com>

    commit a10949d
    Merge: 49ded4f b545c93
    Author: Andre Fonseca <afonseca@expensify.com>
    Date:   Tue Jan 24 12:21:49 2023 +0000

        Merge pull request Expensify#14347 from Expensify/cmartins-fixMembersPage

        Fix Invite member checkbox selection behavior

    commit 49ded4f
    Merge: 553916c 373335f
    Author: OSBotify <76178356+OSBotify@users.noreply.github.com>
    Date:   Tue Jan 24 05:53:50 2023 -0500

        Merge pull request Expensify#14509 from Expensify/version-BUILD-1E53A036-DC71-4A10-A537-7FE462383690

        Update version to 1.2.58-4 on main

    commit 373335f
    Author: OSBotify <infra+osbotify@expensify.com>
    Date:   Tue Jan 24 10:53:22 2023 +0000

        Update version to 1.2.58-4

    commit 553916c
    Merge: ae66a7f 82b52f1
    Author: Maria D'Costa <maria@expensify.com>
    Date:   Tue Jan 24 14:48:06 2023 +0400

        Merge pull request Expensify#14508 from Expensify/nat-missingimport

        Fix missing import preventing opening Plaid modal

    commit 82b52f1
    Author: Nathalie Kuoch <nkuoch@expensify.com>
    Date:   Tue Jan 24 10:58:00 2023 +0100

        Fix missing import preventing opening Plaid modal

    commit 3392ff1
    Merge: 63ff50a ae66a7f
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Tue Jan 24 10:25:22 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 63ff50a
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Tue Jan 24 10:23:52 2023 +0100

        fix: passed invalid ref to measureLayout

    commit c37e279
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Tue Jan 24 10:12:20 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Sahil <thesahindia@gmail.com>

    commit f133eb4
    Author: Abdelhafidh Belalia <16493223+s77rt@users.noreply.github.com>
    Date:   Tue Jan 24 09:42:06 2023 +0100

        Fixed regression on Hoverable blur event

    commit 6370512
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Mon Jan 23 18:03:35 2023 -0300

        Use helper method

    commit 378dffc
    Author: Abdul Rahuman <abdulrahuman5196@gmail.com>
    Date:   Tue Jan 24 02:15:46 2023 +0530

        Adding UI filter to exclude delete pending items to be sent to FlatList when online

        Reference: Expensify#14262

    commit bf7f0da
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:47:03 2023 +0100

        update comment

    commit a0e9574
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:46:28 2023 +0100

        fix: add scrollContextEnabled to missing screens

    commit 8c479d2
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:38:12 2023 +0100

        Update contributingGuides/FORMS.md

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit b08dc2b
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:38:01 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit 7d59c4b
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:37:45 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit 165af16
    Merge: 27f5fea fd5e781
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:33:37 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 93199c4
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:59:15 2023 +0000

        Update JSDoc of the build closed report action method

    commit 3574093
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:57:50 2023 +0000

        Fix style

    commit f1ff02d
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:57:18 2023 +0000

        Fix the import

    commit a0bc604
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:50:24 2023 +0000

        Default to empty object in case report actions are missing

    commit bb3a7d1
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 20 16:52:06 2023 -0500

        update overlay

    commit 54f1706
    Merge: 742e4e7 17edc82
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 20:13:10 2023 +0000

        Merge branch 'main' into vit-updateArchiveMessageForAdmin

    commit 90dcb3f
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Fri Jan 20 14:06:01 2023 -0300

        Fix currency search

    commit 27f5fea
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 11:11:28 2023 +0100

        fix: add picker scroll functionality to (currently) unused screens

    commit 8cba034
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 11:07:34 2023 +0100

        fix: add picker scroll functionality to AdditionalDetailsStep

    commit b7ff191
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:57:46 2023 +0100

        add picker scroll functionality to CompanyStep

    commit 3505fd9
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:25:24 2023 +0100

        doc: add docs on how to handle pickers in forms

    commit 8edc865
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:06:48 2023 +0100

        fix: add explanation for two Form props

    commit 8172dce
    Merge: 7ba22bd 5aabd37
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:03:09 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 7ba22bd
    Merge: 65d5e9c b197f26
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 16:48:27 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 65d5e9c
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 13:02:18 2023 +0100

        fix: usage of new ref in Form

    commit fe8d4cd
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 13:00:34 2023 +0100

        fix: remove random string in Form

    commit 1cbeaa7
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:59:42 2023 +0100

        Use scrollContext and overflow on AddDebitCardPage

    commit 384eedb
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:58:51 2023 +0100

        fix: use scrollToOverflowEnabled prop from passed down props

    commit 71a415a
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:58:23 2023 +0100

        feat: Introduce scrollContextEnabled and scrollToOverflowEnabled props on Form component

    commit c4e8ea8
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:02:07 2023 +0100

        fix: add missing forwardRef to ScrollViewWithContext

    commit 559df8b
    Author: Oliver Wilks <ollywilks@googlemail.com>
    Date:   Wed Jan 18 21:36:36 2023 +0000

        Changed getIOUReportActions filter order

    commit b545c93
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 17:00:26 2023 -0700

        validate if preferred locale changes

    commit e9f4cd3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:54:01 2023 -0700

        fix toggleAllusers logic

    commit 6ec1826
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:38:05 2023 -0700

        fix logic for select all

    commit b85e275
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:28:16 2023 -0700

        keep select all checked if admin is selected

    commit 96afdf0
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:21:52 2023 -0700

        display error message

    commit 6d0ef22
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:07:02 2023 -0700

        add early return for delete modal

    commit 52dd36f
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:00:07 2023 -0700

        early return if errors are not empty

    commit 8cd37db
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:58:16 2023 -0700

        revert changes to select all checkbox

    commit 2237a6b
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:35:06 2023 -0700

        rm setWorkspaceMemberErrors

    commit a3a7337
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:32:40 2023 -0700

        fix setWorkspaceMemberErrors

    commit 689a4bc
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:05:57 2023 -0700

        create setWorkspaceMemberErrors

    commit d31d4be
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:47:26 2023 -0700

        rm comment and create validate

    commit b6d28d3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:45:21 2023 -0700

        rm filter in submit function

    commit e2a9256
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:42:50 2023 -0700

        fix select all logic

    commit 5be2153
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:38:52 2023 -0700

        clean up removableMembers

    commit dcf6a1d
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:31:30 2023 -0700

        clean up CheckboxWithTooltip

    commit 509be3f
    Merge: be59dc3 3636f1f
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 11:32:16 2023 -0700

        Merge branch 'main' into cmartins-fixMembersPage

    commit be59dc3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:23:03 2023 -0700

        rm showTooltipForLogin state

    commit d177feb
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:20:14 2023 -0700

        rm willTooltipShowForLogin

    commit 0f7f685
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:15:53 2023 -0700

        rm canBeRemoved var

    commit 742e4e7
    Author: Vit Horacek <vit@expensify.com>
    Date:   Tue Jan 17 00:36:09 2023 +0100

        Clean up

    commit a84aab4
    Author: Vit Horacek <vit@expensify.com>
    Date:   Tue Jan 17 00:33:54 2023 +0100

        Add a comment

    commit 55cbf0f
    Author: Vit Horacek <vit@expensify.com>
    Date:   Mon Jan 16 22:23:54 2023 +0100

        Build method to create closed optimistic actions

    commit 868fff6
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:36:47 2023 -0500

        remove another shouldShowLargeAvatars

    commit 19c9602
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:33:58 2023 -0500

        remove unused variable

    commit e1e86b3
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:32:01 2023 -0500

        center number on mobile

    commit 8407368
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:05:58 2023 -0500

        center number

    commit 4aee6b7
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 16:43:33 2023 -0500

        remove shouldShowLargeAvatars

    commit 679476f
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 16:36:20 2023 -0500

        remove console logs and add constant

    commit 0167179
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Thu Jan 12 17:39:39 2023 -0500

        initial updates for new shared size avatars

commit 8992e46
Merge: 7a10eff ae66a7f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 23 17:55:31 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 7a10eff
Merge: c2fb8f8 e43bab5
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 22 20:22:03 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit c2fb8f8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Jan 19 18:29:28 2023 -0500

    fixed some minor issues

commit 246073a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Jan 19 18:10:34 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.native.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit a8daa2b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 17 23:31:40 2023 -0500

    minor fixes

commit 9efe361
Merge: 5684e41 e62a79f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 17 23:27:36 2023 -0500

    Merge branch 'main' into arrow-feature-signed

commit 5684e41
Merge: c97a7dc 8662d3d
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:46:23 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit c97a7dc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:45:07 2023 -0500

    minor updates for comments

commit 50143fb
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:37:49 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit aef4993
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:37:14 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit cb4ed59
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 00:04:40 2023 -0500

    removed line

commit 1ce9be6
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:59:55 2023 -0500

    added comments, fixed linting

commit e7ad0d3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:40:27 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit 31e389b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:39:54 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.native.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit 77eb354
Merge: d286d16 7ca2979
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:52:11 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit d286d16
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:48:18 2023 -0500

    fixed issue with highlight

commit 27c4f08
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:29:34 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit f1e31af
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:27:01 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 1c3c3f7
Merge: bc8fc1a 5a09253
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 10 22:23:23 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit bc8fc1a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 10 22:22:21 2023 -0500

    fixed up some code per comments, added debounce to image size

commit 17fe0fc
Merge: 2f73a45 a53b274
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 14:43:06 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 2f73a45
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 13:49:02 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 2199eae
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 13:44:22 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 65b694a
Merge: ba8c0e9 64b9717
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Jan 4 21:45:08 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit ba8c0e9
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Jan 4 21:44:49 2023 -0500

    changed prop type

commit d9d1889
Merge: d2d4e76 5af5d30
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 3 20:58:04 2023 -0500

    Merge branch 'main' into arrow-feature-signed

commit d2d4e76
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:28:27 2022 -0500

    used replace for config env

commit c0f4c12
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:07:14 2022 -0500

    Revert "added replace for ngrok url"

    This reverts commit 7b7a5a0.

commit 2180ca4
Merge: 3738f1f 0bde3f8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:05:58 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 3738f1f
Merge: 7b7a5a0 276f177
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 26 19:38:09 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 7b7a5a0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 26 15:28:37 2022 -0500

    added replace for ngrok url

commit 95069f2
Merge: c257f2c 89e3eef
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 21 18:46:21 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit c257f2c
Merge: bfa027d 5265b5b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 20 22:41:33 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit bfa027d
Merge: 3465da8 9a52f02
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 19 18:32:54 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 3465da8
Merge: aab283f 3620bf2
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 15 18:32:12 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit aab283f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 15 18:30:06 2022 -0500

    updating var names to explain their use better

commit 3965cff
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 14 18:26:41 2022 -0500

    set dimension undefined to trigger spinner when fetching dimensions

commit 9948fca
Merge: 428aaab 1a03ee3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 14 17:01:52 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 428aaab
Merge: 704753a 11cf564
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 13 19:05:45 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 704753a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:41:44 2022 -0500

    Update src/components/PDFView/pdfViewPropTypes.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit e042066
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:41:24 2022 -0500

    Update src/components/ImageView/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit f148909
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:40:08 2022 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 47ed2db
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:39:08 2022 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 938adda
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:37:14 2022 -0500

    Update src/components/ImageView/index.native.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit e46566d
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 11 18:00:15 2022 -0500

    updating attachment download url

commit f1dfd4c
Merge: 2e56ef8 10dd188
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 11 16:54:35 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit 2e56ef8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 7 22:28:11 2022 -0500

    fixed sliding, set buttons to circles

commit 4dd29c6
Merge: a895d00 5501ff5
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 7 20:27:44 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit a895d00
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:32:14 2022 -0500

    cleaned up some of the code in reduce

commit cdd60bc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:25:35 2022 -0500

    added comment to reducer

commit c6e5b53
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:15:55 2022 -0500

    added comment, use full url

commit 2226040
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 17:25:55 2022 -0500

    moved auth token method into render to prevent undefined page

commit 337dbf2
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 16:27:20 2022 -0500

    fixed keyboard inputs

commit 8d05018
Merge: 70c9ac3 5869c66
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 16:12:33 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 70c9ac3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 4 18:49:03 2022 -0500

    fixed error with sorting values, fixing styles

commit 480e550
Merge: f738465 01e7a70
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 4 18:16:56 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit f738465
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 18:36:53 2022 -0500

    cleaned up report actions, fixed issue with pagination

commit 7abd76e
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 17:29:49 2022 -0500

    updating comment, added required to props

commit 3dd0e19
Merge: a873db7 cd83501
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 16:53:21 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit a873db7
Merge: 6f02e04 e09d228
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 14 08:04:46 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 6f02e04
Merge: 5f49543 0de35b9
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 14 08:03:31 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit 5f49543
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 23:19:02 2022 -0500

    removed console, removed string replace

commit 2911b43
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 22:13:24 2022 -0500

    adding functionality to load more attachments as needed

commit a083df2
Merge: a7200ba 91acada
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 20:49:00 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit a7200ba
Merge: 05e8623 63ccac8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Nov 2 20:36:50 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 05e8623
Merge: fad847f 03d7e8f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 26 18:52:43 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit fad847f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 26 18:38:42 2022 -0400

    moved and renamed some files

commit 7a7ae20
Merge: f6e6b43 70efb00
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Oct 22 23:15:00 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit f6e6b43
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Oct 22 23:14:10 2022 -0400

    removed fix for something that was fixed elsewhere

commit 962c589
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Fri Oct 21 17:44:12 2022 -0400

    fixes for comments

commit 8bbf5a7
Merge: 6b9accf b2acb8f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Fri Oct 21 10:47:07 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 6b9accf
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Oct 20 20:57:08 2022 -0400

    fixed up some mobile issues from the move

commit 799cf6c
Merge: 0cd79cc fbf0334
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 19 20:09:57 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 0cd79cc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Oct 18 21:26:07 2022 -0400

    reverted back the swipeableview, move events with web-based carousel

commit 5b303d0
Merge: 4c76f2e 555a679
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Oct 18 20:09:35 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 4c76f2e
Merge: 16531eb b299503
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Sep 29 21:32:03 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 16531eb
Merge: e327533 b75faf0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Sep 25 09:02:49 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit e327533
Merge: f1e3411 09ff150
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Sep 21 18:31:08 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit f1e3411
Merge: 468cba3 0302ce7
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 19 07:53:10 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 468cba3
Merge: 594ff07 ca08fb0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Sep 13 09:55:56 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 594ff07
Merge: 59e461c f95b761
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Sep 7 18:43:07 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 59e461c
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 5 14:05:04 2022 -0400

    set up attachment download to work

commit 19d648a
Merge: 240e1e3 11761be
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 5 11:44:04 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 240e1e3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Aug 30 19:22:53 2022 -0400

    use shap instead of object for linting

commit 9a9620e
Merge: 8aaf7fe 41ec9bd
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Aug 30 18:52:33 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 8aaf7fe
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Aug 13 19:41:04 2022 -0400

    cleaned up code, fixed some arrow showing issues

commit 91a5a05
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Aug 13 16:52:18 2022 -0400

    adding a native press event for pdfs

commit 191d8d7
Merge: 0366275 a06358c
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jul 31 13:34:12 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 0366275
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jul 31 13:10:11 2022 -0400

    fixed up some issues with pdf

commit 199a8b1
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 26 23:22:45 2022 -0400

    Set up animation to swipe

commit 69d6a97
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 23:23:36 2022 -0400

    added resize for cycling images

commit 70d5d29
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 23:13:37 2022 -0400

    adding some logic to update the size of image when cycled

commit e2e9633
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 22:19:01 2022 -0400

    finished with swiping to change images

commit ad64a2f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jul 18 21:22:03 2022 -0400

    moved everything into carousel

commit b741616
Author: Robert <JediWattson@users.noreply.github.com>
Date:   Sun Jul 17 19:45:51 2022 -0400

    setting up show arrows with ios

commit 656d0da
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sat Jul 2 13:27:56 2022 -0400

    linting fixes

commit e38f4a8
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sat Jul 2 13:19:10 2022 -0400

    set up event handlers and styling to show arrow on mouse over

commit ecd2675
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 26 17:48:36 2022 -0400

    added arrow key handler, cleaned up function and helper text

commit 5886c90
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Mon Jun 6 16:11:30 2022 -0400

    reverting changes to image updates

commit 225fbd3
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:38:08 2022 -0400

    removed unused state pieces

commit bf7e03e
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:35:38 2022 -0400

    removed styles

commit b52ee9c
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:25:03 2022 -0400

    cleaned up styling of buttons

commit 2e6ae8d
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:46:19 2022 -0400

    wrong value passed

commit 33a8e35
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:18:56 2022 -0400

    removed dry code

commit 0e0cdf1
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:14:36 2022 -0400

    use button for app default styles, added disable

commit c216164
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Wed Jun 1 15:27:47 2022 -0400

    adding carousel to attachment modal
JediWattson added a commit to JediWattson/App that referenced this pull request Jan 25, 2023
commit 811dd58
Merge: 6f70a7d f133eb4
Author: Chris Kosuke Tseng <ctseng@expensify.com>
Date:   Tue Jan 24 15:19:32 2023 -0800

    Merge pull request Expensify#14507 from s77rt/hoverable-onblur

    Fixed regression on Hoverable blur event

commit 6f70a7d
Merge: 4ddb47e 3392ff1
Author: Aldo Canepa Garay <87341702+aldo-expensify@users.noreply.github.com>
Date:   Tue Jan 24 13:56:15 2023 -0800

    Merge pull request Expensify#14409 from margelo/fix/scroll-to-picker-regression

    Fix: Scroll to picker regression

commit 4ddb47e
Merge: c2ff5f8 93199c4
Author: Vit Horacek <36083550+mountiny@users.noreply.github.com>
Date:   Tue Jan 24 18:47:32 2023 +0000

    Merge pull request Expensify#14343 from Expensify/vit-updateArchiveMessageForAdmin

    Add closed report action optimistically when workspace is closed

commit c2ff5f8
Merge: 25b47da 73d23d8
Author: Ionatan Wiznia <ionatan@expensify.com>
Date:   Tue Jan 24 19:41:45 2023 +0100

    Merge pull request Expensify#14440 from Expensify/ionatan_fixcurrencysearch

    Fix currency search

commit 25b47da
Merge: 614da95 378dffc
Author: Jack Nam <30609178+thienlnam@users.noreply.github.com>
Date:   Tue Jan 24 10:35:53 2023 -0800

    Merge pull request Expensify#14483 from abdulrahuman5196/add-payment-delay

commit 614da95
Merge: 4d86f17 559df8b
Author: Yuwen Memon <yuwen@expensify.com>
Date:   Tue Jan 24 10:21:33 2023 -0800

    Merge pull request Expensify#14400 from Ollyws/issue-14355

    Fix for: App crashes when splitting a bill offline

commit 4d86f17
Merge: a10949d bb3a7d1
Author: Cristi Paval <cristi@expensify.com>
Date:   Tue Jan 24 18:33:28 2023 +0200

    Merge pull request Expensify#14255 from Expensify/dangrous-embiggenavatars

    Make avatars in chat welcome messages always big

commit 73d23d8
Author: Ionatan Wiznia <ionatan@expensify.com>
Date:   Tue Jan 24 16:21:32 2023 +0100

    Update src/pages/iou/IOUCurrencySelection.js

    Co-authored-by: Eugene Voloshchak <copyreading@gmail.com>

commit a10949d
Merge: 49ded4f b545c93
Author: Andre Fonseca <afonseca@expensify.com>
Date:   Tue Jan 24 12:21:49 2023 +0000

    Merge pull request Expensify#14347 from Expensify/cmartins-fixMembersPage

    Fix Invite member checkbox selection behavior

commit 49ded4f
Merge: 553916c 373335f
Author: OSBotify <76178356+OSBotify@users.noreply.github.com>
Date:   Tue Jan 24 05:53:50 2023 -0500

    Merge pull request Expensify#14509 from Expensify/version-BUILD-1E53A036-DC71-4A10-A537-7FE462383690

    Update version to 1.2.58-4 on main

commit 373335f
Author: OSBotify <infra+osbotify@expensify.com>
Date:   Tue Jan 24 10:53:22 2023 +0000

    Update version to 1.2.58-4

commit 553916c
Merge: ae66a7f 82b52f1
Author: Maria D'Costa <maria@expensify.com>
Date:   Tue Jan 24 14:48:06 2023 +0400

    Merge pull request Expensify#14508 from Expensify/nat-missingimport

    Fix missing import preventing opening Plaid modal

commit 82b52f1
Author: Nathalie Kuoch <nkuoch@expensify.com>
Date:   Tue Jan 24 10:58:00 2023 +0100

    Fix missing import preventing opening Plaid modal

commit 3392ff1
Merge: 63ff50a ae66a7f
Author: Christoph Pader <christoph@margelo.io>
Date:   Tue Jan 24 10:25:22 2023 +0100

    Merge branch 'main' into fix/scroll-to-picker-regression

commit 63ff50a
Author: Christoph Pader <christoph@margelo.io>
Date:   Tue Jan 24 10:23:52 2023 +0100

    fix: passed invalid ref to measureLayout

commit c37e279
Author: Christoph Pader <christoph.pader@outlook.com>
Date:   Tue Jan 24 10:12:20 2023 +0100

    Update src/components/Form.js

    Co-authored-by: Sahil <thesahindia@gmail.com>

commit f133eb4
Author: Abdelhafidh Belalia <16493223+s77rt@users.noreply.github.com>
Date:   Tue Jan 24 09:42:06 2023 +0100

    Fixed regression on Hoverable blur event

commit 6370512
Author: Ionatan Wiznia <ionatan@expensify.com>
Date:   Mon Jan 23 18:03:35 2023 -0300

    Use helper method

commit 378dffc
Author: Abdul Rahuman <abdulrahuman5196@gmail.com>
Date:   Tue Jan 24 02:15:46 2023 +0530

    Adding UI filter to exclude delete pending items to be sent to FlatList when online

    Reference: Expensify#14262

commit bf7f0da
Author: Christoph Pader <christoph@margelo.io>
Date:   Mon Jan 23 14:47:03 2023 +0100

    update comment

commit a0e9574
Author: Christoph Pader <christoph@margelo.io>
Date:   Mon Jan 23 14:46:28 2023 +0100

    fix: add scrollContextEnabled to missing screens

commit 8c479d2
Author: Christoph Pader <christoph.pader@outlook.com>
Date:   Mon Jan 23 14:38:12 2023 +0100

    Update contributingGuides/FORMS.md

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit b08dc2b
Author: Christoph Pader <christoph.pader@outlook.com>
Date:   Mon Jan 23 14:38:01 2023 +0100

    Update src/components/Form.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 7d59c4b
Author: Christoph Pader <christoph.pader@outlook.com>
Date:   Mon Jan 23 14:37:45 2023 +0100

    Update src/components/Form.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 165af16
Merge: 27f5fea fd5e781
Author: Christoph Pader <christoph@margelo.io>
Date:   Mon Jan 23 14:33:37 2023 +0100

    Merge branch 'main' into fix/scroll-to-picker-regression

commit 93199c4
Author: Vit Horacek <vit@expensify.com>
Date:   Fri Jan 20 22:59:15 2023 +0000

    Update JSDoc of the build closed report action method

commit 3574093
Author: Vit Horacek <vit@expensify.com>
Date:   Fri Jan 20 22:57:50 2023 +0000

    Fix style

commit f1ff02d
Author: Vit Horacek <vit@expensify.com>
Date:   Fri Jan 20 22:57:18 2023 +0000

    Fix the import

commit a0bc604
Author: Vit Horacek <vit@expensify.com>
Date:   Fri Jan 20 22:50:24 2023 +0000

    Default to empty object in case report actions are missing

commit bb3a7d1
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 20 16:52:06 2023 -0500

    update overlay

commit 54f1706
Merge: 742e4e7 17edc82
Author: Vit Horacek <vit@expensify.com>
Date:   Fri Jan 20 20:13:10 2023 +0000

    Merge branch 'main' into vit-updateArchiveMessageForAdmin

commit 90dcb3f
Author: Ionatan Wiznia <ionatan@expensify.com>
Date:   Fri Jan 20 14:06:01 2023 -0300

    Fix currency search

commit 27f5fea
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 11:11:28 2023 +0100

    fix: add picker scroll functionality to (currently) unused screens

commit 8cba034
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 11:07:34 2023 +0100

    fix: add picker scroll functionality to AdditionalDetailsStep

commit b7ff191
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 10:57:46 2023 +0100

    add picker scroll functionality to CompanyStep

commit 3505fd9
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 10:25:24 2023 +0100

    doc: add docs on how to handle pickers in forms

commit 8edc865
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 10:06:48 2023 +0100

    fix: add explanation for two Form props

commit 8172dce
Merge: 7ba22bd 5aabd37
Author: Christoph Pader <christoph@margelo.io>
Date:   Fri Jan 20 10:03:09 2023 +0100

    Merge branch 'main' into fix/scroll-to-picker-regression

commit 7ba22bd
Merge: 65d5e9c b197f26
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 16:48:27 2023 +0100

    Merge branch 'main' into fix/scroll-to-picker-regression

commit 65d5e9c
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 13:02:18 2023 +0100

    fix: usage of new ref in Form

commit fe8d4cd
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 13:00:34 2023 +0100

    fix: remove random string in Form

commit 1cbeaa7
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 12:59:42 2023 +0100

    Use scrollContext and overflow on AddDebitCardPage

commit 384eedb
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 12:58:51 2023 +0100

    fix: use scrollToOverflowEnabled prop from passed down props

commit 71a415a
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 12:58:23 2023 +0100

    feat: Introduce scrollContextEnabled and scrollToOverflowEnabled props on Form component

commit c4e8ea8
Author: Christoph Pader <christoph@margelo.io>
Date:   Thu Jan 19 12:02:07 2023 +0100

    fix: add missing forwardRef to ScrollViewWithContext

commit 559df8b
Author: Oliver Wilks <ollywilks@googlemail.com>
Date:   Wed Jan 18 21:36:36 2023 +0000

    Changed getIOUReportActions filter order

commit b545c93
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 17:00:26 2023 -0700

    validate if preferred locale changes

commit e9f4cd3
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:54:01 2023 -0700

    fix toggleAllusers logic

commit 6ec1826
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:38:05 2023 -0700

    fix logic for select all

commit b85e275
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:28:16 2023 -0700

    keep select all checked if admin is selected

commit 96afdf0
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:21:52 2023 -0700

    display error message

commit 6d0ef22
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:07:02 2023 -0700

    add early return for delete modal

commit 52dd36f
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 16:00:07 2023 -0700

    early return if errors are not empty

commit 8cd37db
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 15:58:16 2023 -0700

    revert changes to select all checkbox

commit 2237a6b
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 15:35:06 2023 -0700

    rm setWorkspaceMemberErrors

commit a3a7337
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 15:32:40 2023 -0700

    fix setWorkspaceMemberErrors

commit 689a4bc
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 15:05:57 2023 -0700

    create setWorkspaceMemberErrors

commit d31d4be
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 14:47:26 2023 -0700

    rm comment and create validate

commit b6d28d3
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 14:45:21 2023 -0700

    rm filter in submit function

commit e2a9256
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 14:42:50 2023 -0700

    fix select all logic

commit 5be2153
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 14:38:52 2023 -0700

    clean up removableMembers

commit dcf6a1d
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 14:31:30 2023 -0700

    clean up CheckboxWithTooltip

commit 509be3f
Merge: be59dc3 3636f1f
Author: Carlos Martins <cmartins@expensify.com>
Date:   Tue Jan 17 11:32:16 2023 -0700

    Merge branch 'main' into cmartins-fixMembersPage

commit be59dc3
Author: Carlos Martins <cmartins@expensify.com>
Date:   Mon Jan 16 17:23:03 2023 -0700

    rm showTooltipForLogin state

commit d177feb
Author: Carlos Martins <cmartins@expensify.com>
Date:   Mon Jan 16 17:20:14 2023 -0700

    rm willTooltipShowForLogin

commit 0f7f685
Author: Carlos Martins <cmartins@expensify.com>
Date:   Mon Jan 16 17:15:53 2023 -0700

    rm canBeRemoved var

commit 742e4e7
Author: Vit Horacek <vit@expensify.com>
Date:   Tue Jan 17 00:36:09 2023 +0100

    Clean up

commit a84aab4
Author: Vit Horacek <vit@expensify.com>
Date:   Tue Jan 17 00:33:54 2023 +0100

    Add a comment

commit 55cbf0f
Author: Vit Horacek <vit@expensify.com>
Date:   Mon Jan 16 22:23:54 2023 +0100

    Build method to create closed optimistic actions

commit 868fff6
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 17:36:47 2023 -0500

    remove another shouldShowLargeAvatars

commit 19c9602
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 17:33:58 2023 -0500

    remove unused variable

commit e1e86b3
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 17:32:01 2023 -0500

    center number on mobile

commit 8407368
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 17:05:58 2023 -0500

    center number

commit 4aee6b7
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 16:43:33 2023 -0500

    remove shouldShowLargeAvatars

commit 679476f
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Fri Jan 13 16:36:20 2023 -0500

    remove console logs and add constant

commit 0167179
Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
Date:   Thu Jan 12 17:39:39 2023 -0500

    initial updates for new shared size avatars
@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/sketchydroide in version: 1.2.59-0 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

JediWattson added a commit to JediWattson/App that referenced this pull request Jan 26, 2023
commit e54c4b8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Jan 25 21:31:13 2023 -0500

    fixing lint errors

commit 445c9f7
Merge: b355edc a9f1892
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 24 22:16:06 2023 -0500

    Merge remote-tracking branch 'upstream/main' into arrow-feature-signed

commit b355edc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 24 22:03:59 2023 -0500

    Squashed commit of the following:

    commit 811dd58
    Merge: 6f70a7d f133eb4
    Author: Chris Kosuke Tseng <ctseng@expensify.com>
    Date:   Tue Jan 24 15:19:32 2023 -0800

        Merge pull request Expensify#14507 from s77rt/hoverable-onblur

        Fixed regression on Hoverable blur event

    commit 6f70a7d
    Merge: 4ddb47e 3392ff1
    Author: Aldo Canepa Garay <87341702+aldo-expensify@users.noreply.github.com>
    Date:   Tue Jan 24 13:56:15 2023 -0800

        Merge pull request Expensify#14409 from margelo/fix/scroll-to-picker-regression

        Fix: Scroll to picker regression

    commit 4ddb47e
    Merge: c2ff5f8 93199c4
    Author: Vit Horacek <36083550+mountiny@users.noreply.github.com>
    Date:   Tue Jan 24 18:47:32 2023 +0000

        Merge pull request Expensify#14343 from Expensify/vit-updateArchiveMessageForAdmin

        Add closed report action optimistically when workspace is closed

    commit c2ff5f8
    Merge: 25b47da 73d23d8
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Tue Jan 24 19:41:45 2023 +0100

        Merge pull request Expensify#14440 from Expensify/ionatan_fixcurrencysearch

        Fix currency search

    commit 25b47da
    Merge: 614da95 378dffc
    Author: Jack Nam <30609178+thienlnam@users.noreply.github.com>
    Date:   Tue Jan 24 10:35:53 2023 -0800

        Merge pull request Expensify#14483 from abdulrahuman5196/add-payment-delay

    commit 614da95
    Merge: 4d86f17 559df8b
    Author: Yuwen Memon <yuwen@expensify.com>
    Date:   Tue Jan 24 10:21:33 2023 -0800

        Merge pull request Expensify#14400 from Ollyws/issue-14355

        Fix for: App crashes when splitting a bill offline

    commit 4d86f17
    Merge: a10949d bb3a7d1
    Author: Cristi Paval <cristi@expensify.com>
    Date:   Tue Jan 24 18:33:28 2023 +0200

        Merge pull request Expensify#14255 from Expensify/dangrous-embiggenavatars

        Make avatars in chat welcome messages always big

    commit 73d23d8
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Tue Jan 24 16:21:32 2023 +0100

        Update src/pages/iou/IOUCurrencySelection.js

        Co-authored-by: Eugene Voloshchak <copyreading@gmail.com>

    commit a10949d
    Merge: 49ded4f b545c93
    Author: Andre Fonseca <afonseca@expensify.com>
    Date:   Tue Jan 24 12:21:49 2023 +0000

        Merge pull request Expensify#14347 from Expensify/cmartins-fixMembersPage

        Fix Invite member checkbox selection behavior

    commit 49ded4f
    Merge: 553916c 373335f
    Author: OSBotify <76178356+OSBotify@users.noreply.github.com>
    Date:   Tue Jan 24 05:53:50 2023 -0500

        Merge pull request Expensify#14509 from Expensify/version-BUILD-1E53A036-DC71-4A10-A537-7FE462383690

        Update version to 1.2.58-4 on main

    commit 373335f
    Author: OSBotify <infra+osbotify@expensify.com>
    Date:   Tue Jan 24 10:53:22 2023 +0000

        Update version to 1.2.58-4

    commit 553916c
    Merge: ae66a7f 82b52f1
    Author: Maria D'Costa <maria@expensify.com>
    Date:   Tue Jan 24 14:48:06 2023 +0400

        Merge pull request Expensify#14508 from Expensify/nat-missingimport

        Fix missing import preventing opening Plaid modal

    commit 82b52f1
    Author: Nathalie Kuoch <nkuoch@expensify.com>
    Date:   Tue Jan 24 10:58:00 2023 +0100

        Fix missing import preventing opening Plaid modal

    commit 3392ff1
    Merge: 63ff50a ae66a7f
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Tue Jan 24 10:25:22 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 63ff50a
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Tue Jan 24 10:23:52 2023 +0100

        fix: passed invalid ref to measureLayout

    commit c37e279
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Tue Jan 24 10:12:20 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Sahil <thesahindia@gmail.com>

    commit f133eb4
    Author: Abdelhafidh Belalia <16493223+s77rt@users.noreply.github.com>
    Date:   Tue Jan 24 09:42:06 2023 +0100

        Fixed regression on Hoverable blur event

    commit 6370512
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Mon Jan 23 18:03:35 2023 -0300

        Use helper method

    commit 378dffc
    Author: Abdul Rahuman <abdulrahuman5196@gmail.com>
    Date:   Tue Jan 24 02:15:46 2023 +0530

        Adding UI filter to exclude delete pending items to be sent to FlatList when online

        Reference: Expensify#14262

    commit bf7f0da
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:47:03 2023 +0100

        update comment

    commit a0e9574
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:46:28 2023 +0100

        fix: add scrollContextEnabled to missing screens

    commit 8c479d2
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:38:12 2023 +0100

        Update contributingGuides/FORMS.md

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit b08dc2b
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:38:01 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit 7d59c4b
    Author: Christoph Pader <christoph.pader@outlook.com>
    Date:   Mon Jan 23 14:37:45 2023 +0100

        Update src/components/Form.js

        Co-authored-by: Carlos Martins <luacmartins@gmail.com>

    commit 165af16
    Merge: 27f5fea fd5e781
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Mon Jan 23 14:33:37 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 93199c4
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:59:15 2023 +0000

        Update JSDoc of the build closed report action method

    commit 3574093
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:57:50 2023 +0000

        Fix style

    commit f1ff02d
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:57:18 2023 +0000

        Fix the import

    commit a0bc604
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 22:50:24 2023 +0000

        Default to empty object in case report actions are missing

    commit bb3a7d1
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 20 16:52:06 2023 -0500

        update overlay

    commit 54f1706
    Merge: 742e4e7 17edc82
    Author: Vit Horacek <vit@expensify.com>
    Date:   Fri Jan 20 20:13:10 2023 +0000

        Merge branch 'main' into vit-updateArchiveMessageForAdmin

    commit 90dcb3f
    Author: Ionatan Wiznia <ionatan@expensify.com>
    Date:   Fri Jan 20 14:06:01 2023 -0300

        Fix currency search

    commit 27f5fea
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 11:11:28 2023 +0100

        fix: add picker scroll functionality to (currently) unused screens

    commit 8cba034
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 11:07:34 2023 +0100

        fix: add picker scroll functionality to AdditionalDetailsStep

    commit b7ff191
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:57:46 2023 +0100

        add picker scroll functionality to CompanyStep

    commit 3505fd9
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:25:24 2023 +0100

        doc: add docs on how to handle pickers in forms

    commit 8edc865
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:06:48 2023 +0100

        fix: add explanation for two Form props

    commit 8172dce
    Merge: 7ba22bd 5aabd37
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Fri Jan 20 10:03:09 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 7ba22bd
    Merge: 65d5e9c b197f26
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 16:48:27 2023 +0100

        Merge branch 'main' into fix/scroll-to-picker-regression

    commit 65d5e9c
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 13:02:18 2023 +0100

        fix: usage of new ref in Form

    commit fe8d4cd
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 13:00:34 2023 +0100

        fix: remove random string in Form

    commit 1cbeaa7
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:59:42 2023 +0100

        Use scrollContext and overflow on AddDebitCardPage

    commit 384eedb
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:58:51 2023 +0100

        fix: use scrollToOverflowEnabled prop from passed down props

    commit 71a415a
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:58:23 2023 +0100

        feat: Introduce scrollContextEnabled and scrollToOverflowEnabled props on Form component

    commit c4e8ea8
    Author: Christoph Pader <christoph@margelo.io>
    Date:   Thu Jan 19 12:02:07 2023 +0100

        fix: add missing forwardRef to ScrollViewWithContext

    commit 559df8b
    Author: Oliver Wilks <ollywilks@googlemail.com>
    Date:   Wed Jan 18 21:36:36 2023 +0000

        Changed getIOUReportActions filter order

    commit b545c93
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 17:00:26 2023 -0700

        validate if preferred locale changes

    commit e9f4cd3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:54:01 2023 -0700

        fix toggleAllusers logic

    commit 6ec1826
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:38:05 2023 -0700

        fix logic for select all

    commit b85e275
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:28:16 2023 -0700

        keep select all checked if admin is selected

    commit 96afdf0
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:21:52 2023 -0700

        display error message

    commit 6d0ef22
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:07:02 2023 -0700

        add early return for delete modal

    commit 52dd36f
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 16:00:07 2023 -0700

        early return if errors are not empty

    commit 8cd37db
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:58:16 2023 -0700

        revert changes to select all checkbox

    commit 2237a6b
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:35:06 2023 -0700

        rm setWorkspaceMemberErrors

    commit a3a7337
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:32:40 2023 -0700

        fix setWorkspaceMemberErrors

    commit 689a4bc
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 15:05:57 2023 -0700

        create setWorkspaceMemberErrors

    commit d31d4be
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:47:26 2023 -0700

        rm comment and create validate

    commit b6d28d3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:45:21 2023 -0700

        rm filter in submit function

    commit e2a9256
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:42:50 2023 -0700

        fix select all logic

    commit 5be2153
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:38:52 2023 -0700

        clean up removableMembers

    commit dcf6a1d
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 14:31:30 2023 -0700

        clean up CheckboxWithTooltip

    commit 509be3f
    Merge: be59dc3 3636f1f
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Tue Jan 17 11:32:16 2023 -0700

        Merge branch 'main' into cmartins-fixMembersPage

    commit be59dc3
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:23:03 2023 -0700

        rm showTooltipForLogin state

    commit d177feb
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:20:14 2023 -0700

        rm willTooltipShowForLogin

    commit 0f7f685
    Author: Carlos Martins <cmartins@expensify.com>
    Date:   Mon Jan 16 17:15:53 2023 -0700

        rm canBeRemoved var

    commit 742e4e7
    Author: Vit Horacek <vit@expensify.com>
    Date:   Tue Jan 17 00:36:09 2023 +0100

        Clean up

    commit a84aab4
    Author: Vit Horacek <vit@expensify.com>
    Date:   Tue Jan 17 00:33:54 2023 +0100

        Add a comment

    commit 55cbf0f
    Author: Vit Horacek <vit@expensify.com>
    Date:   Mon Jan 16 22:23:54 2023 +0100

        Build method to create closed optimistic actions

    commit 868fff6
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:36:47 2023 -0500

        remove another shouldShowLargeAvatars

    commit 19c9602
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:33:58 2023 -0500

        remove unused variable

    commit e1e86b3
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:32:01 2023 -0500

        center number on mobile

    commit 8407368
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 17:05:58 2023 -0500

        center number

    commit 4aee6b7
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 16:43:33 2023 -0500

        remove shouldShowLargeAvatars

    commit 679476f
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Fri Jan 13 16:36:20 2023 -0500

        remove console logs and add constant

    commit 0167179
    Author: Daniel Gale-Rosen <dgalerosen@expensify.com>
    Date:   Thu Jan 12 17:39:39 2023 -0500

        initial updates for new shared size avatars

commit 8992e46
Merge: 7a10eff ae66a7f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 23 17:55:31 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 7a10eff
Merge: c2fb8f8 e43bab5
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 22 20:22:03 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit c2fb8f8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Jan 19 18:29:28 2023 -0500

    fixed some minor issues

commit 246073a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Jan 19 18:10:34 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.native.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit a8daa2b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 17 23:31:40 2023 -0500

    minor fixes

commit 9efe361
Merge: 5684e41 e62a79f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 17 23:27:36 2023 -0500

    Merge branch 'main' into arrow-feature-signed

commit 5684e41
Merge: c97a7dc 8662d3d
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:46:23 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit c97a7dc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:45:07 2023 -0500

    minor updates for comments

commit 50143fb
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:37:49 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit aef4993
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 14:37:14 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit cb4ed59
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jan 16 00:04:40 2023 -0500

    removed line

commit 1ce9be6
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:59:55 2023 -0500

    added comments, fixed linting

commit e7ad0d3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:40:27 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit 31e389b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 15 23:39:54 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.native.js

    Co-authored-by: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com>

commit 77eb354
Merge: d286d16 7ca2979
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:52:11 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit d286d16
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:48:18 2023 -0500

    fixed issue with highlight

commit 27c4f08
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:29:34 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit f1e31af
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Jan 14 21:27:01 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 1c3c3f7
Merge: bc8fc1a 5a09253
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 10 22:23:23 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit bc8fc1a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 10 22:22:21 2023 -0500

    fixed up some code per comments, added debounce to image size

commit 17fe0fc
Merge: 2f73a45 a53b274
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 14:43:06 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 2f73a45
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 13:49:02 2023 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 2199eae
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jan 8 13:44:22 2023 -0500

    Update src/components/AttachmentCarousel/CarouselActions/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 65b694a
Merge: ba8c0e9 64b9717
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Jan 4 21:45:08 2023 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit ba8c0e9
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Jan 4 21:44:49 2023 -0500

    changed prop type

commit d9d1889
Merge: d2d4e76 5af5d30
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jan 3 20:58:04 2023 -0500

    Merge branch 'main' into arrow-feature-signed

commit d2d4e76
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:28:27 2022 -0500

    used replace for config env

commit c0f4c12
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:07:14 2022 -0500

    Revert "added replace for ngrok url"

    This reverts commit 7b7a5a0.

commit 2180ca4
Merge: 3738f1f 0bde3f8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 29 19:05:58 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 3738f1f
Merge: 7b7a5a0 276f177
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 26 19:38:09 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 7b7a5a0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 26 15:28:37 2022 -0500

    added replace for ngrok url

commit 95069f2
Merge: c257f2c 89e3eef
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 21 18:46:21 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit c257f2c
Merge: bfa027d 5265b5b
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 20 22:41:33 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit bfa027d
Merge: 3465da8 9a52f02
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 19 18:32:54 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 3465da8
Merge: aab283f 3620bf2
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 15 18:32:12 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit aab283f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Dec 15 18:30:06 2022 -0500

    updating var names to explain their use better

commit 3965cff
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 14 18:26:41 2022 -0500

    set dimension undefined to trigger spinner when fetching dimensions

commit 9948fca
Merge: 428aaab 1a03ee3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 14 17:01:52 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 428aaab
Merge: 704753a 11cf564
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 13 19:05:45 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 704753a
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:41:44 2022 -0500

    Update src/components/PDFView/pdfViewPropTypes.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit e042066
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:41:24 2022 -0500

    Update src/components/ImageView/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit f148909
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:40:08 2022 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 47ed2db
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:39:08 2022 -0500

    Update src/components/AttachmentCarousel/index.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit 938adda
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Dec 12 20:37:14 2022 -0500

    Update src/components/ImageView/index.native.js

    Co-authored-by: Carlos Martins <luacmartins@gmail.com>

commit e46566d
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 11 18:00:15 2022 -0500

    updating attachment download url

commit f1dfd4c
Merge: 2e56ef8 10dd188
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 11 16:54:35 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit 2e56ef8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 7 22:28:11 2022 -0500

    fixed sliding, set buttons to circles

commit 4dd29c6
Merge: a895d00 5501ff5
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Dec 7 20:27:44 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit a895d00
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:32:14 2022 -0500

    cleaned up some of the code in reduce

commit cdd60bc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:25:35 2022 -0500

    added comment to reducer

commit c6e5b53
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 19:15:55 2022 -0500

    added comment, use full url

commit 2226040
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 17:25:55 2022 -0500

    moved auth token method into render to prevent undefined page

commit 337dbf2
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 16:27:20 2022 -0500

    fixed keyboard inputs

commit 8d05018
Merge: 70c9ac3 5869c66
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Dec 6 16:12:33 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 70c9ac3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 4 18:49:03 2022 -0500

    fixed error with sorting values, fixing styles

commit 480e550
Merge: f738465 01e7a70
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Dec 4 18:16:56 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit f738465
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 18:36:53 2022 -0500

    cleaned up report actions, fixed issue with pagination

commit 7abd76e
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 17:29:49 2022 -0500

    updating comment, added required to props

commit 3dd0e19
Merge: a873db7 cd83501
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Nov 19 16:53:21 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit a873db7
Merge: 6f02e04 e09d228
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 14 08:04:46 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 6f02e04
Merge: 5f49543 0de35b9
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 14 08:03:31 2022 -0500

    Merge branch 'main' into arrow-feature-signed

commit 5f49543
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 23:19:02 2022 -0500

    removed console, removed string replace

commit 2911b43
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 22:13:24 2022 -0500

    adding functionality to load more attachments as needed

commit a083df2
Merge: a7200ba 91acada
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Nov 7 20:49:00 2022 -0500

    Merge branch 'Expensify:main' into arrow-feature-signed

commit a7200ba
Merge: 05e8623 63ccac8
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Nov 2 20:36:50 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 05e8623
Merge: fad847f 03d7e8f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 26 18:52:43 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit fad847f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 26 18:38:42 2022 -0400

    moved and renamed some files

commit 7a7ae20
Merge: f6e6b43 70efb00
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Oct 22 23:15:00 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit f6e6b43
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Oct 22 23:14:10 2022 -0400

    removed fix for something that was fixed elsewhere

commit 962c589
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Fri Oct 21 17:44:12 2022 -0400

    fixes for comments

commit 8bbf5a7
Merge: 6b9accf b2acb8f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Fri Oct 21 10:47:07 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 6b9accf
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Oct 20 20:57:08 2022 -0400

    fixed up some mobile issues from the move

commit 799cf6c
Merge: 0cd79cc fbf0334
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Oct 19 20:09:57 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 0cd79cc
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Oct 18 21:26:07 2022 -0400

    reverted back the swipeableview, move events with web-based carousel

commit 5b303d0
Merge: 4c76f2e 555a679
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Oct 18 20:09:35 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 4c76f2e
Merge: 16531eb b299503
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Thu Sep 29 21:32:03 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 16531eb
Merge: e327533 b75faf0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Sep 25 09:02:49 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit e327533
Merge: f1e3411 09ff150
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Sep 21 18:31:08 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit f1e3411
Merge: 468cba3 0302ce7
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 19 07:53:10 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 468cba3
Merge: 594ff07 ca08fb0
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Sep 13 09:55:56 2022 -0400

    Merge branch 'Expensify:main' into arrow-feature-signed

commit 594ff07
Merge: 59e461c f95b761
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Wed Sep 7 18:43:07 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 59e461c
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 5 14:05:04 2022 -0400

    set up attachment download to work

commit 19d648a
Merge: 240e1e3 11761be
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Sep 5 11:44:04 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 240e1e3
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Aug 30 19:22:53 2022 -0400

    use shap instead of object for linting

commit 9a9620e
Merge: 8aaf7fe 41ec9bd
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Aug 30 18:52:33 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 8aaf7fe
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Aug 13 19:41:04 2022 -0400

    cleaned up code, fixed some arrow showing issues

commit 91a5a05
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sat Aug 13 16:52:18 2022 -0400

    adding a native press event for pdfs

commit 191d8d7
Merge: 0366275 a06358c
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jul 31 13:34:12 2022 -0400

    Merge branch 'main' into arrow-feature-signed

commit 0366275
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Sun Jul 31 13:10:11 2022 -0400

    fixed up some issues with pdf

commit 199a8b1
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 26 23:22:45 2022 -0400

    Set up animation to swipe

commit 69d6a97
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 23:23:36 2022 -0400

    added resize for cycling images

commit 70d5d29
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 23:13:37 2022 -0400

    adding some logic to update the size of image when cycled

commit e2e9633
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Tue Jul 19 22:19:01 2022 -0400

    finished with swiping to change images

commit ad64a2f
Author: Robert Daly <JediWattson@users.noreply.github.com>
Date:   Mon Jul 18 21:22:03 2022 -0400

    moved everything into carousel

commit b741616
Author: Robert <JediWattson@users.noreply.github.com>
Date:   Sun Jul 17 19:45:51 2022 -0400

    setting up show arrows with ios

commit 656d0da
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sat Jul 2 13:27:56 2022 -0400

    linting fixes

commit e38f4a8
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sat Jul 2 13:19:10 2022 -0400

    set up event handlers and styling to show arrow on mouse over

commit ecd2675
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 26 17:48:36 2022 -0400

    added arrow key handler, cleaned up function and helper text

commit 5886c90
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Mon Jun 6 16:11:30 2022 -0400

    reverting changes to image updates

commit 225fbd3
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:38:08 2022 -0400

    removed unused state pieces

commit bf7e03e
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:35:38 2022 -0400

    removed styles

commit b52ee9c
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 13:25:03 2022 -0400

    cleaned up styling of buttons

commit 2e6ae8d
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:46:19 2022 -0400

    wrong value passed

commit 33a8e35
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:18:56 2022 -0400

    removed dry code

commit 0e0cdf1
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Sun Jun 5 12:14:36 2022 -0400

    use button for app default styles, added disable

commit c216164
Author: JediWattson <JediWattson@users.noreply.github.com>
Date:   Wed Jun 1 15:27:47 2022 -0400

    adding carousel to attachment modal
@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/luacmartins in version: 1.2.59-1 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 failure ❌
🕸 web 🕸 success ✅

@s77rt
Copy link
Contributor

s77rt commented Apr 20, 2023

This PR caused a regression here #17203. The style that was being passed to <CheckboxWithTooltip /> was being used in a wrapper View here. But after this PR when you switched to <Checkbox /> the style was getting applied directly to the Checkbox itself.

@sobitneupane
Copy link
Contributor

In this issue #20719 , we decided to not allow users to select an admin from the members checklist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants