-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
[HOLD for Payment 2025-03-25] [$250] Web - Copilot- Page redirects after refreshing Copilot Magic Code page after changing access #57342
Comments
Triggered auto assignment to @dylanexpensify ( |
🚨 Edited by proposal-police: This proposal was edited at 2025-02-25 02:11:55 UTC. ProposalPlease re-state the problem that we are trying to solve in this issue.Web - Copilot- Page redirects after refreshing Copilot Magic Code page after changing access What is the root cause of that problem?we're relying on state newRole to show or not the magic code modal : App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Lines 86 to 90 in 2cf14bf
after refresh state will be lost What changes do you think we should make in order to solve the problem?Or use we could do it like add copilot confirm page:
modal stuck issue after sucess: App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateMagicCodeModal.tsx Lines 32 to 33 in eaa3be4
What specific scenarios should we cover in automated tests to prevent reintroducing this issue in the future?UI issue What alternative solutions did you explore? |
|
🚨 Edited by proposal-police: This proposal was edited at 2025-02-25 11:40:24 UTC. ProposalPlease re-state the problem that we are trying to solve in this issue.User is redirected to the previous page. What is the root cause of that problem?The condition to show the magic code page are App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Lines 28 to 29 in eaa3be4
App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Line 86 in eaa3be4
App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Line 90 in eaa3be4
What changes do you think we should make in order to solve the problem?Update: App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Lines 28 to 29 in eaa3be4
const newRoleFromURL = route.params.newRole;
const [isValidateCodeActionModalVisible, setIsValidateCodeActionModalVisible] = useState(showValidateActionModalFromURL ?? false);
const [newRole, setNewRole] = useState<ValueOf<typeof CONST.DELEGATE_ROLE> | null>(newRoleFromURL);
useEffect(() => {
navigation.setParams({showValidateActionModal: isValidateCodeActionModalVisible, newRole: newRole});
}, [isValidateCodeActionModalVisible, newRole]); With this change, we stored the new role and action modal state in URL so that when refreshing the page, the magic modal is shown properly.
App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateMagicCodeModal.tsx Line 32 in eaa3be4
we should update it to What specific scenarios should we cover in automated tests to prevent reintroducing this issue in the future?
What alternative solutions did you explore? (Optional) |
Job added to Upwork: https://www.upwork.com/jobs/~021894288958180956203 |
Triggered auto assignment to Contributor-plus team member for initial proposal review - @ikevin127 ( |
@daledah Thanks for the proposal, your RCA is not complete as even if we store the Your solution is on the right track if we are to compare to the other component you referenced, but is also incomplete, as even if we store both ![]() . First of all, I have to let you know that removing the:
Quoting Matt from Slack:
🔄 Regarding your proposal, the RCA is incomplete, similar to the other proposal, you're only mentioning the Your solution is not addressing the fact that neither Moving forward, I think PR #54680 is a good starting point since it addressed exactly the same issue, the difference being that with our component ( ♻ If still interested, I'm looking forward to reviewing the first updated proposal that has a complete RCA and working solution. |
@ikevin127 , proposal updated pls review again alternative solution |
in My RCA i mentioned newRole
but I missed isValidateCodeActionModalVisible (about removing the |
Proposal updated
|
@M00rish Please carefully read my previous comment, use AI to translate if needed (including on this comment). Your updated proposal is still invalid because the solution is not presisting the ♻ As mentioned in my previous comment, simply copy & pasting PRs #54680 fix is not enough for our issue as it's more complex, this is why in order to fix this issue, one needs to take some time and put some thought into it because it's not as simple as a 1-line fix. |
@ikevin127, I understood, iI am making a check to see if the code magic modal is on use is switching to the other role , can you review again thanks: |
Proposal updated
|
Edited: proposal updated |
🚨 Edited by proposal-police: This proposal was edited at 2025-02-25 16:58:13 UTC. ProposalPlease re-state the problem that we are trying to solve in this issue.Copilot code verification modal is not persisted across page refreshes. What is the root cause of that problem?The What changes do you think we should make in order to solve the problem?
sessionStorage.setItem(CONST.SESSION_STORAGE_KEYS.DELEGATE_NEW_ROLE, option?.value); App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Lines 75 to 82 in e12e4b3
3. Create a new useEffect to apply this session storage variable, if it exists:
useEffect(() => {
const previousNewRole = sessionStorage.getItem(CONST.SESSION_STORAGE_KEYS.DELEGATE_NEW_ROLE);
if (previousNewRole && Object.values(CONST.DELEGATE_ROLE).includes(previousNewRole)) {
setNewRole(previousNewRole);
setIsValidateCodeActionModalVisible(true);
sessionStorage.removeItem(CONST.SESSION_STORAGE_KEYS.DELEGATE_NEW_ROLE);
}
}, []); It should be put here: App/src/pages/settings/Security/AddDelegate/UpdateDelegateRole/UpdateDelegateRolePage.tsx Line 39 in e12e4b3
Navigation.dismissModal(); What specific scenarios should we cover in automated tests to prevent reintroducing this issue in the future?Simply ensuring the magic code can be entered without additional input after refreshing the page (which means the first modal is the magic code modal) should be enough. What alternative solutions did you explore? (Optional)Storing this data with Onyx or local storage but it doesn't seem appropriate since it's a transient value. |
Proposal Updated
|
|
Thanks everybody for the proposals! @daledah's updated proposal makes the most sense to me. The updated RCA is correct, touching on all parts involved in this issue and the proposed solution fixes the issue accordingly, considering the UI issue mentioned in my first review. ♻ The reason why I went with their proposal is because after my first review, they were first to update their proposal to a point where it was complete and had no regressions. Note Note for PR@daledah Please consider taking this fix into account and applying the fix similar to what the referenced PR applied in commit 45c2e9e, since after I tested on iOS: mWeb I noticed the same behaviour - and we should align the behaviour to be the same since that was already approved by the design team in the other PR. 🎀👀🎀 C+ reviewed |
Triggered auto assignment to @jasperhuangg, see https://stackoverflow.com/c/expensify/questions/7972 for more details. |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
@jasperhuangg Whenever you have a moment, would you mind taking a look at this issue? |
@jasperhuangg @ikevin127 @dylanexpensify this issue was created 2 weeks ago. Are we close to approving a proposal? If not, what's blocking us from getting this issue assigned? Don't hesitate to create a thread in #expensify-open-source to align faster in real time. Thanks! |
@ikevin127 Huh... This is 4 days overdue. Who can take care of this? |
♻ Still awaiting @jasperhuangg's assignment on my proposal review. |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
@jasperhuangg This issue is pending your assignment. Could you review it when you have a moment? |
Bump @jasperhuangg 🙇♂ |
📣 @ikevin127 🎉 An offer has been automatically sent to your Upwork account for the Reviewer role 🎉 Thanks for contributing to the Expensify app! |
📣 @daledah 🎉 An offer has been automatically sent to your Upwork account for the Contributor role 🎉 Thanks for contributing to the Expensify app! Offer link |
@ikevin127 PR is ready. |
|
cc @dylanexpensify for payments |
Payment summary: Contributor: @daledah $250 via Upwork Please apply/request! |
Paid! @ikevin127 can you complete checklist, please |
BugZero Checklist:
Bug classificationSource of bug:
Where bug was reported:
Who reported the bug:
Regression Test Proposal
Do we agree 👍 or 👎. |
done! |
If you haven’t already, check out our contributing guidelines for onboarding and email [email protected] to request to join our Slack channel!
Version Number: v9.1.5-0
Reproducible in staging?: Yes
Reproducible in production?: Yes
If this was caught on HybridApp, is this reproducible on New Expensify Standalone?: N/A
If this was caught during regression testing, add the test name, ID and link from TestRail: N/A
Email or phone of affected tester (no customers): [email protected]
Issue reported by: Applause Internal Team
Device used: Mac 13.6/Chrome
App Component: User Settings
Action Performed:
Expected Result:
User should remain on the Copilot Magic Code page after refreshing.
Actual Result:
User is redirected to the previous page.
Workaround:
Unknown
Platforms:
Screenshots/Videos
Bug6752955_1740428985666.Screen_Recording_2025-02-24_at_12.28.50_PM.mp4
View all open jobs on GitHub
Upwork Automation - Do Not Edit
Issue Owner
Current Issue Owner: @ikevin127The text was updated successfully, but these errors were encountered: