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

[$500] [HOLD for payment 2023-09-21] Web - allStates.Greater London.stateName appears on select United state as Country #27325

Closed
1 of 6 tasks
kbecciv opened this issue Sep 13, 2023 · 35 comments
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 Engineering External Added to denote the issue can be worked on by a contributor

Comments

@kbecciv
Copy link

kbecciv commented Sep 13, 2023

If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!


Action Performed:

  1. Go to Settings >Profile > Personal details > Home address
  2. Click on Country and select United state
  3. Check the state

Expected Result:

should not show allStates.Greater London.stateName

Actual Result:

allStates.Greater London.stateName appears

Workaround:

Unknown

Platforms:

Which of our officially supported platforms is this issue occurring on?

  • Android / native
  • Android / Chrome
  • iOS / native
  • iOS / Safari
  • MacOS / Chrome / Safari
  • MacOS / Desktop

Version Number: 1.3.69.0
Reproducible in staging?: y
Reproducible in production?: n
If this was caught during regression testing, add the test name, ID and link from TestRail:
Email or phone of affected tester (no customers):
Logs: https://stackoverflow.com/c/expensify/questions/4856
Notes/Photos/Videos: Any additional supporting documentation

Screen.Recording.2023-09-13.at.2.58.39.PM.mov
Recording.4430.mp4

Expensify/Expensify Issue URL:
Issue reported by: @dhanashree-sawant
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1694597057219419
Original reporter:
https://expensify.slack.com/archives/C049HHMV9SM/p1694597349412869

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~01e4437f3cf84845b7
  • Upwork Job ID: 1706865721848041472
  • Last Price Increase: 2023-09-27
@kbecciv kbecciv added the DeployBlockerCash This issue or pull request should block deployment label Sep 13, 2023
@OSBotify
Copy link
Contributor

👋 Friendly reminder that deploy blockers are time-sensitive ⏱ issues! Check out the open StagingDeployCash deploy checklist to see the list of PRs included in this release, then work quickly to do one of the following:

  1. Identify the pull request that introduced this issue and revert it.
  2. Find someone who can quickly fix the issue.
  3. Fix the issue yourself.

@melvin-bot
Copy link

melvin-bot bot commented Sep 13, 2023

Triggered auto assignment to @madmax330 (Engineering), see https://stackoverflow.com/c/expensify/questions/4319 for more details.

@paultsimura
Copy link
Contributor

paultsimura commented Sep 13, 2023

Proposal

Please re-state the problem that we are trying to solve in this issue.

After a state is selected, and the country is changed to USA, the StatePicker component breaks.

Note: in current main branch in dev, it doesn't just show allStates.Greater London.stateName – it breaks the app.

What is the root cause of that problem?

In AddressPage, the StatePicker component has the defaultValue set to the initially selected state.

Because of it, even though we reset the state on country change in handleAddressChange, the value of StatePicker does not change, since the defaultValue is already persisted the moment the StatePicker is rendered.

const handleAddressChange = (value, key) => {
if (key !== 'country' && key !== 'state') {
return;
}
if (key === 'country') {
setCurrentCountry(value);
setState('');
return;
}
setState(value);
};

What changes do you think we should make in order to solve the problem?

My suggestion is to replace defaultValue with value. This will change the selected value in the StatePicker dynamically.

<StatePicker
inputID="state"
defaultValue={state}
onValueChange={handleAddressChange}
/>

                            <StatePicker
                                inputID="state"
-                               defaultValue={state}
+                               value={state}
                                onValueChange={handleAddressChange}
                            />

Result:

https://www.loom.com/share/17db17156d444b648b6382f0870c3489?sid=dee1c244-dc20-448f-81d8-ec9ca3546e8e

What alternative solutions did you explore? (Optional)

@paultsimura
Copy link
Contributor

@madmax330 since this is a blocker – is it still eligible for proposals? If yes – how often are they reviewed?

@madmax330
Copy link
Contributor

@paultsimura I think someone already has the fix, we're just waiting for them to put up the PR

@melvin-bot melvin-bot bot added Reviewing Has a PR in review Weekly KSv2 and removed Hourly KSv2 labels Sep 13, 2023
@paultsimura
Copy link
Contributor

@paultsimura I think someone already has the fix, we're just waiting for them to put up the PR

I see this issue was referenced in a PR, but I doubt that PR fixes this issue - it doesn't look like a regression from the translations flattening.

Anyway, let's wait and see what the result would be.

@madmax330
Copy link
Contributor

@paultsimura if you look at the testing videos in the PR description, it is fixed.

@melvin-bot
Copy link

melvin-bot bot commented Sep 13, 2023

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

@melvin-bot
Copy link

melvin-bot bot commented Sep 13, 2023

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

@melvin-bot
Copy link

melvin-bot bot commented Sep 13, 2023

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

@melvin-bot
Copy link

melvin-bot bot commented Sep 13, 2023

⚠️ Looks like this issue was linked to a Deploy Blocker here

If you are the assigned CME please investigate whether the linked PR caused a regression and leave a comment with the results.

If a regression has occurred and you are the assigned CM follow the instructions here.

If this regression could have been avoided please consider also proposing a recommendation to the PR checklist so that we can avoid it in the future.

@paultsimura
Copy link
Contributor

@paultsimura if you look at the testing videos in the PR description, it is fixed.

You're right, my apologies.

@mountiny mountiny removed the DeployBlockerCash This issue or pull request should block deployment label Sep 14, 2023
@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Weekly KSv2 labels Sep 14, 2023
@melvin-bot melvin-bot bot changed the title Web - allStates.Greater London.stateName appears on select United state as Country [HOLD for payment 2023-09-21] Web - allStates.Greater London.stateName appears on select United state as Country Sep 14, 2023
@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Sep 14, 2023
@melvin-bot
Copy link

melvin-bot bot commented Sep 14, 2023

Reviewing label has been removed, please complete the "BugZero Checklist".

@melvin-bot
Copy link

melvin-bot bot commented Sep 14, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.69-2 and is now subject to a 7-day regression period 📆. Here is the list of pull requests that resolve this issue:

If no regressions arise, payment will be issued on 2023-09-21. 🎊

After the hold period is over and BZ checklist items are completed, please complete any of the applicable payments for this issue, and check them off once done.

  • External issue reporter
  • Contributor that fixed the issue
  • Contributor+ that helped on the issue and/or PR

For reference, here are some details about the assignees on this issue:

As a reminder, here are the bonuses/penalties that should be applied for any External issue:

  • Merged PR within 3 business days of assignment - 50% bonus
  • Merged PR more than 9 business days after assignment - 50% penalty

@melvin-bot melvin-bot bot removed the Weekly KSv2 label Sep 21, 2023
@madmax330
Copy link
Contributor

Ah, sorry

@madmax330 madmax330 reopened this Sep 27, 2023
@madmax330 madmax330 added the Bug Something is broken. Auto assigns a BugZero manager. label Sep 27, 2023
@melvin-bot
Copy link

melvin-bot bot commented Sep 27, 2023

Triggered auto assignment to @kevinksullivan (Bug), see https://stackoverflow.com/c/expensify/questions/14418 for more details.

@melvin-bot
Copy link

melvin-bot bot commented Sep 27, 2023

Bug0 Triage Checklist (Main S/O)

  • This "bug" occurs on a supported platform (ensure Platforms in OP are ✅)
  • This bug is not a duplicate report (check E/App issues and #expensify-bugs)
    • If it is, comment with a link to the original report, close the issue and add any novel details to the original issue instead
  • This bug is reproducible using the reproduction steps in the OP. S/O
    • If the reproduction steps are clear and you're unable to reproduce the bug, check with the reporter and QA first, then close the issue.
    • If the reproduction steps aren't clear and you determine the correct steps, please update the OP.
  • This issue is filled out as thoroughly and clearly as possible
    • Pay special attention to the title, results, platforms where the bug occurs, and if the bug happens on staging/production.
  • I have reviewed and subscribed to the linked Slack conversation to ensure Slack/Github stay in sync

@madmax330
Copy link
Contributor

@kevinksullivan can you just handle the C+ payment? Then we can close the issue

@greg-schroeder
Copy link
Contributor

greg-schroeder commented Sep 27, 2023

I'll take care of this @kevinksullivan

@greg-schroeder greg-schroeder added the External Added to denote the issue can be worked on by a contributor label Sep 27, 2023
@melvin-bot melvin-bot bot changed the title [HOLD for payment 2023-09-21] Web - allStates.Greater London.stateName appears on select United state as Country [$500] [HOLD for payment 2023-09-21] Web - allStates.Greater London.stateName appears on select United state as Country Sep 27, 2023
@melvin-bot
Copy link

melvin-bot bot commented Sep 27, 2023

Job added to Upwork: https://www.upwork.com/jobs/~01e4437f3cf84845b7

@melvin-bot melvin-bot bot added the Help Wanted Apply this label when an issue is open to proposals by contributors label Sep 27, 2023
@melvin-bot
Copy link

melvin-bot bot commented Sep 27, 2023

Triggered auto assignment to Contributor-plus team member for initial proposal review - @mollfpr (External)

@greg-schroeder
Copy link
Contributor

Just applying external to create an upwork job

@madmax330
Copy link
Contributor

@greg-schroeder I think @parasharrajat gets paid in newDot, do we still need an upwork job for that?

@greg-schroeder
Copy link
Contributor

@madmax330 are we not paying the issue reporter?

@dhanashree-sawant
Copy link

Yes my payment too is left 😅

@madmax330
Copy link
Contributor

are we not paying the issue reporter?

Ah yes, forgot about that, sorry :ohnothing:

@greg-schroeder
Copy link
Contributor

Issue Participants:

Issue reported by: @dhanashree-sawant hanashree-sawant
C+: @parasharrajat

Reporter: $50
C+: $500 (+$250 speed bonus)

offer sent to reporter, Rajat you can make a manual request in newdot

@dhanashree-sawant
Copy link

Thanks @greg-schroeder, I have accepted the offer

@parasharrajat
Copy link
Member

@greg-schroeder Can you please assign me as well to the issue for tracking purposes?

@melvin-bot melvin-bot bot removed the Help Wanted Apply this label when an issue is open to proposals by contributors label Sep 28, 2023
@parasharrajat
Copy link
Member

Payment requested as per #27325 (comment)

@JmillsExpensify
Copy link

$750 payment approved for @parasharrajat based on BZ summary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 Engineering External Added to denote the issue can be worked on by a contributor
Projects
None yet
Development

No branches or pull requests