Skip to content

Commit d70db96

Browse files
committed
Merge branch 'main' into fix/51491-wallet-page
2 parents 8e3babe + b80c68e commit d70db96

File tree

1,178 files changed

+822863
-67411
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,178 files changed

+822863
-67411
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ONYX_METRICS=false
1414
USE_THIRD_PARTY_SCRIPTS=false
1515

1616
EXPENSIFY_ACCOUNT_ID_ACCOUNTING=-1
17+
EXPENSIFY_ACCOUNT_ID_ACCOUNTS_PAYABLE=-1
1718
EXPENSIFY_ACCOUNT_ID_ADMIN=-1
1819
EXPENSIFY_ACCOUNT_ID_BILLS=-1
1920
EXPENSIFY_ACCOUNT_ID_CHRONOS=-1

.github/ISSUE_TEMPLATE/Internal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Open an internal issue for a backend fix
33
about: Use this template to report a backend issue that an internal Expensify employee needs to fix
4-
labels: Hot Pick, Daily, Internal, AutoAssignerNewDotQuality
4+
labels: Daily, Internal, AutoAssignerNewDotQuality
55
---
66

77
<!-- Please link the original GH where the problem was reported -->

.github/PULL_REQUEST_TEMPLATE.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c
8585
- [ ] I verified that comments were added to code that is not self explanatory
8686
- [ ] 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.
8787
- [ ] I verified any copy / text shown in the product is localized by adding it to `src/languages/*` files and using the [translation method](https://github.com/Expensify/App/blob/4bd99402cebdf4d7394e0d1f260879ea238197eb/src/components/withLocalize.js#L60)
88-
- [ ] 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:
88+
- [ ] If any non-english text was added/modified, I used [JaimeGPT](https://chatgpt.com/g/g-2dgOQl5VM-english-to-spanish-translator-aka-jaimegpt) to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
8989
- [ ] I verified all numbers, amounts, dates and phone numbers shown in the product are using the [localization methods](https://github.com/Expensify/App/blob/4bd99402cebdf4d7394e0d1f260879ea238197eb/src/components/withLocalize.js#L60-L68)
9090
- [ ] I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
9191
- [ ] 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.
@@ -94,7 +94,7 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c
9494
- [ ] I followed the guidelines as stated in the [Review Guidelines](https://github.com/Expensify/App/blob/main/contributingGuides/PR_REVIEW_GUIDELINES.md)
9595
- [ ] 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)
9696
- [ ] I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
97-
- [ ] 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
97+
- [ ] I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
9898
- [ ] I verified that if a function's arguments changed that all usages have also been updated correctly
9999
- [ ] If any new file was added I verified that:
100100
- [ ] 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
@@ -109,6 +109,7 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c
109109
- [ ] I verified that all the inputs inside a form are aligned with each other.
110110
- [ ] I added `Design` label and/or tagged `@Expensify/design` so the design team can review the changes.
111111
- [ ] 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.
112+
- [ ] I added [unit tests](https://github.com/Expensify/App/blob/main/tests/README.md) for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
112113
- [ ] If the `main` branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the `Test` steps.
113114

114115
### Screenshots/Videos

0 commit comments

Comments
 (0)