Skip to content

Fix approval chain when the admin bypasses approvers#70283

Merged
amyevans merged 30 commits into
Expensify:mainfrom
fahimj:fix/69249
Oct 15, 2025
Merged

Fix approval chain when the admin bypasses approvers#70283
amyevans merged 30 commits into
Expensify:mainfrom
fahimj:fix/69249

Conversation

@fahimj

@fahimj fahimj commented Sep 10, 2025

Copy link
Copy Markdown
Contributor

Explanation of Change

This PR fixes an issue where admins who bypassed approvers using "Change approver" → "Bypass approvers" would see incorrect next step messages and missing Pay buttons when approving expense reports offline.

The root cause was that the getApprovalChain function in ReportUtils.ts calculated approval chains based on policy workflows, ignoring the current report state where an admin had become the manager by bypassing approvers. This caused isLastApprover to return false instead of true, leading to incorrect status predictions.

The fix adds a check at the beginning of getApprovalChain to detect when the current user is the manager (indicating they bypassed approvers) and returns an approval chain containing only them, ensuring correct approval flow logic.

Fixed Issues

$ #69249
PROPOSAL: #69249 (comment)

Tests

  1. Create a test account with admin privileges on a workspace
  2. Create an expense report as a regular employee and submit it
  3. As an admin, go to the expense report and select "Change approver" → "Bypass approvers"
  4. Verify the admin becomes the manager of the report (managerID should match admin's accountID)
  5. Go offline (disconnect internet or use airplane mode)
  6. As the admin, approve the expense report
  7. Verify the next step message shows "Waiting for an admin to pay expense(s)" (not "Waiting for approver to approve expense(s)")
  8. Verify the Pay button appears and is functional
  9. Test on a regular approval flow (without bypassing) to ensure no regression
  10. Verify normal approval chain still works when current user is not the manager
  • Verify that no errors appear in the JS console

Offline tests

  1. Follow the main test steps above while offline
  2. Verify the correct next step message appears when approving while offline
  3. Verify the Pay button is visible and functional while offline
  4. Test reconnecting to internet and ensure the approval status syncs correctly

QA Steps

Same as tests above. Additional QA considerations:

  • Test with multiple approvers in the chain before bypassing

  • 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: mWeb Chrome
    • iOS: Native
    • iOS: mWeb 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 verified there are no new alerts related to the canBeMissing param for useOnyx
  • 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 used 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: N/A (no text changes)
    • 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 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)
    • 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.ts 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 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(theme.componentBG))
  • If new assets were added or existing ones were modified, I verified that:
    • The assets are optimized and compressed (for SVG files, run npm run compress-svg)
    • The assets load correctly across all supported platforms.
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • 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 the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • 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 added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • 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.

Screenshots/Videos

Android: Native
android-fix.mov
Android: mWeb Chrome
android-web.mp4
iOS: Native
ios.mov
iOS: mWeb Safari
ios.mov
MacOS: Chrome / Safari
after-web.mp4
MacOS: Desktop
desktop.mp4

… corresponding unit tests. The function now returns only the current user's email if they are the manager of the expense report, indicating that they bypassed other approvers. Unit tests cover both bypass and normal approval scenarios.
@fahimj fahimj requested a review from a team as a code owner September 10, 2025 15:46
@melvin-bot melvin-bot Bot requested a review from parasharrajat September 10, 2025 15:46
@melvin-bot melvin-bot Bot removed the request for review from a team September 10, 2025 15:46
@melvin-bot

melvin-bot Bot commented Sep 10, 2025

Copy link
Copy Markdown

@parasharrajat Please 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]

Comment thread src/libs/ReportUtils.ts Outdated
Comment on lines +11148 to +11155
// Check if the current user is the manager of the expense report (indicating they bypassed approvers)
const managerAccountID = expenseReport?.managerID ?? CONST.DEFAULT_NUMBER_ID;
if (managerAccountID === currentUserAccountID) {
const currentUserEmailForApproval = currentUserEmail ?? '';
// Return an approval chain containing only the current user since they are now the sole approver
return currentUserEmailForApproval ? [currentUserEmailForApproval] : [];
}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

How does this work when I login with a approver account.

  1. User A submitted an expenes to workspace P.
  2. User B is now assigned as approver via approver workflows where User C is next approver is line.
  3. User B logined and approved that expense.

Whether you will see User C as next approver or not.

@fahimj fahimj Sep 11, 2025

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I guess you’re referring to the regular flow where the admin does not bypass approvers. From what I’ve observed:

  • Without my change: getApprovalChain simply returns the value from fullApprovalChain, which in this case is [userB].
  • With my change: since currentAccount equals managerAccountId (i.e. userB), the logic goes into the if block, and the function also returns [userB].

So in both scenarios, getApprovalChain does not include userC in its return value.

Here is my workflow in my test workspace:
image

Do I miss anything?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Hmm, it looks like I need to verify this with a case that includes additional approvers. Here’s my updated workflow:
image
I’ll double-check this workflow and get back to you shortly.

@parasharrajat parasharrajat Sep 11, 2025

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Yes, thank you. I was referring to same advaned approvals.

Comment thread src/libs/ReportUtils.ts Outdated
const nextApprover = fullApprovalChain.length > 0 ? fullApprovalChain[0] : null;
const shouldCurrentUserBeNextApprover = nextApprover === currentUserEmailForApproval;

if (isCurrentUserManager && !shouldCurrentUserBeNextApprover && currentUserEmailForApproval) {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

I'm lost on why we are look at the currentUserEmail. What does everyone else see for the next step?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

You’re right, getApprovalChain shouldn’t depend on currentUserEmail at all. The approval chain should remain the same regardless of which user is logged in.

@marcaaron

Copy link
Copy Markdown
Contributor

I am questioning the current approach...

Wrong next action message, missing Pay button after bypassing approver & approving offline

That's what we are fixing. I'm not sure if we should change what actually gets returned by the method being modified as it could have unintended consequences elsewhere in the UI? The approval workflow itself does not really change if we bypass approvers on a single report. It is still the same workflow. It was simply taken over in the case of one report.

@marcaaron

Copy link
Copy Markdown
Contributor

IMO the way to determine if the current user got here via "Bypass approvers" and should be the final approver is to look at the report actions. If we see a "TAKECONTROL" action then they should be the final approver and see the option to pay.

@marcaaron

Copy link
Copy Markdown
Contributor

Here's a longer explanation with an edge case to be aware of....

For Bypass Approver we need to:

  • Check if a manager "took control" of a report by looking at the report's action history
  • Look for a "TAKE_CONTROL" action by the current approver
  • If there's a "SUBMITTED" action AFTER the take control action, then the take control is invalidated

When someone takes control, they're essentially saying "I'll handle this report from here, skip the normal approval chain". If someone took control in NewDot they become final approver. But if the report gets resubmitted later (creating a new SUBMITTED action), the take control is canceled and the normal approval chain resumes.

Real-world example:

Employee submits expense → goes to Manager A
Admin sees the report and clicks "Take Control"
Admin becomes the approver, skipping Manager A
Admin can now give final approval
If employee retracts and resubmits the report, the take control is canceled and it goes back to Manager A

LMK if that makes sense.

… and add corresponding unit tests. The function now returns only the current user's email if they are the manager of the expense report, indicating that they bypassed other approvers. Unit tests cover both bypass and normal approval scenarios."

This reverts commit 95d4111.
@fahimj

fahimj commented Sep 12, 2025

Copy link
Copy Markdown
Contributor Author

Thanks for the explanation, that makes sense. I’ll make sure my change covers this edge case.

…actions in expense reports. Update getApprovalChain to incorporate bypass approver logic based on recent actions.
@fahimj fahimj marked this pull request as draft September 12, 2025 08:26
@fahimj fahimj marked this pull request as ready for review September 12, 2025 08:33
@fahimj

fahimj commented Sep 12, 2025

Copy link
Copy Markdown
Contributor Author

I believe the edge case should be handled now. However, the change is still within getApprovalChain. As @marcaaron mentioned, ideally getApprovalChain should remain untouched.

My proposal was to update the getApprovalChain logic since a bypass approver / take control action effectively changes the approval chain. What would be the better approach?

An alternative would be to adjust isLastApprover instead. That way, we isolate the behavior without changing how the approval chain itself is built. For example:

function isLastApprover(approvalChain: string[], expenseReport?: OnyxEntry<Report>): boolean {
    // Check for take control scenario first
    if (expenseReport) {
        const bypassApprover = getBypassApproverIfTakeControl(expenseReport);
        if (bypassApprover) {
            return bypassApprover === currentUserEmail;
        }
    }
    
    // Original logic
    if (approvalChain.length === 0) {
        return true;
    }
    return approvalChain.at(-1) === currentUserEmail;
}

What do you think about this approach?

@parasharrajat

Copy link
Copy Markdown
Member

I will check this today.

@marcaaron

Copy link
Copy Markdown
Contributor

Everyone can see the next steps so we still need to fix:

Wrong next action message

I would propose something like a getNextReciever() method that can tell us who is the next receiver. That's how we do it in the backend so it makes sense to recreate similar logic for the optimistic frontend case.

@marcaaron

Copy link
Copy Markdown
Contributor

And to be clear, if there is no next receiver then we would maybe return null or empty string or something like that. With that information I think everyone can know it is waiting for approval.

@fahimj

fahimj commented Sep 16, 2025

Copy link
Copy Markdown
Contributor Author

We have the wrong next action message because when a user clicks the approve button, we generate an invalid optimistic message in the approveMoneyRequest action. To fix the wrong next action message, we need to add bypass approver logic in one of these locations:

  • approveMoneyRequest action: This is the action executed when a user clicks the approve button
  • One of the helper functions that approveMoneyRequest uses:
    • getApprovalChain
    • isLastApprover
    • buildNextStep
  • One of the helper functions that buildNextStep uses:
    • getNextApproverAccountID

I think the closest equivalent to the backend's getNextReceiver function is getNextApproverAccountID. However, only changing getNextApproverAccountID would not correct the predictedNextStatus (needed for buildNextStep to create the next step message) and predictedNextState (needed to create the correct action button) values that are calculated in the approveMoneyRequest action.

Therefore, my suggestion would be to add the bypass approver logic either in getApprovalChain or isLastApprover.

@fahimj

fahimj commented Sep 16, 2025

Copy link
Copy Markdown
Contributor Author

Alternatively, we can create a getApprovalChainWithBypassApprover function that handles the bypass approver logic separately and use it in approveMoneyRequest to get the correct approval chain and getApprovalChain would remain unchanged. You can review the changes using getApprovalChainWithBypassApprover in my separate branch here: main...fahimj:App:fix/69249-getApprovalChainWithBypassApprover

@parasharrajat

Copy link
Copy Markdown
Member

I will review this in morning. Thanks for waiting.

Comment thread src/libs/ReportUtils.ts Outdated
Comment on lines +11203 to +11208
// Check if someone took control and it's still valid
const bypassApprover = getBypassApproverIfTakeControl(expenseReport);
if (bypassApprover && bypassApprover !== submitterEmail) {
return [bypassApprover];
}

@parasharrajat parasharrajat Sep 26, 2025

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

We shouldn't update this method as it gives approver by reading the workspace settings.

We should instead update other places where we are actually trying to get the next approver.

So when user takes an approve action who took control of the report, we find next approver and assign that. But here we should not assign the next approver. We will set the report to the approved state and consider this(current) manager as the last approver.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I’ve updated the code and moved this part to getNextApproverAccountID. Could you take a look and review the changes?

@fahimj

fahimj commented Oct 14, 2025

Copy link
Copy Markdown
Contributor Author

ok merged from main

@parasharrajat

parasharrajat commented Oct 14, 2025

Copy link
Copy Markdown
Member

Screenshots

🔲 iOS / native

14.10.2025_17.49.51_REC.mp4

🔲 iOS / Safari

14.10.2025_18.13.46_REC.mp4

🔲 MacOS / Desktop

14.10.2025_17.39.39_REC.mp4

🔲 MacOS / Chrome

14.10.2025_17.31.12_REC.mp4

🔲 Android / Chrome

🔲 Android / native

14.10.2025_17.45.36_REC.mp4

@parasharrajat parasharrajat left a comment

Copy link
Copy Markdown
Member

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: mWeb Chrome
    • iOS: Native
    • iOS: mWeb 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 the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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 grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is 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(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • 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 the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label so the design team can review the changes.
  • 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.
  • 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

🎀 👀 🎀 C+ reviewed

@melvin-bot melvin-bot Bot requested a review from marcaaron October 14, 2025 12:46
@parasharrajat

Copy link
Copy Markdown
Member

@fahimj Please fix the author checklist.

@parasharrajat

Copy link
Copy Markdown
Member

LGTM. Tested a few different approval flows.

@amyevans amyevans left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

A couple thoughts!

Comment thread src/libs/actions/IOU.ts Outdated
Comment thread src/libs/ReportUtils.ts Outdated
Comment thread src/libs/ReportUtils.ts Outdated
Comment thread src/libs/ReportUtils.ts Outdated
Comment thread tests/actions/IOUTest.ts Outdated
Comment thread tests/actions/IOUTest.ts Outdated
Comment thread tests/unit/ReportUtilsTest.ts Outdated
Comment thread src/libs/ReportUtils.ts
@fahimj fahimj requested a review from amyevans October 15, 2025 01:45

@amyevans amyevans left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Looks good!

@amyevans amyevans merged commit b2bc284 into Expensify:main Oct 15, 2025
28 checks passed
@OSBotify

Copy link
Copy Markdown
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.

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/amyevans in version: 9.2.32-0 🚀

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

@parasharrajat

Copy link
Copy Markdown
Member

We are going to revert this PR due to a timely fix for the issues caused. @fahimj, please create a new PR for the same with fixes for all the issues caused. if you don't have solution, please let us know as well as soon as possible.

grgia added a commit that referenced this pull request Oct 16, 2025
mountiny pushed a commit that referenced this pull request Oct 16, 2025
[CP Staging] Revert #70283

(cherry picked from commit 745e1e7)

(cherry-picked to staging by mountiny)
@fahimj

fahimj commented Oct 16, 2025

Copy link
Copy Markdown
Contributor Author

I’ve created a test branch for this issue (#72742 (comment)). I’m still verifying that it doesn’t introduce any other issues. I’ll share an update once I’ve confirmed.

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/mountiny in version: 9.2.32-6 🚀

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

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