Skip to content

Add Explain link to MOVED_TRANSACTION report actions#84279

Merged
Beamanator merged 6 commits intomainfrom
claude-addExplainToMovedTransaction
Mar 9, 2026
Merged

Add Explain link to MOVED_TRANSACTION report actions#84279
Beamanator merged 6 commits intomainfrom
claude-addExplainToMovedTransaction

Conversation

@MelvinBot
Copy link
Contributor

@MelvinBot MelvinBot commented Mar 5, 2026

Explanation of Change

When Concierge automatically moves a transaction between reports (e.g., extracting an expense with policy violations during harvesting so the remaining expenses can be submitted), the backend now includes a reasoning field in the MOVED_TRANSACTION report action's originalMessage. This PR adds support for rendering the "Explain" link on those actions, allowing users to ask Concierge why their expense was moved — the same UX that already exists for auto-categorization (MODIFIED_EXPENSE) and auto-submission (SUBMITTED).

Changes:

  1. OriginalMessage.ts — Added optional reasoning field to OriginalMessageMovedTransaction type
  2. MovedTransactionAction.tsx — When hasReasoning(action) is true, renders ReportActionItemMessageWithExplain (with sparkle icon + Explain link) instead of plain ReportActionItemBasicMessage. Backwards-compatible: old moves without reasoning render unchanged.
  3. PureReportActionItem.tsx — Passes childReport and originalReport props to MovedTransactionAction (needed by ReportActionItemMessageWithExplain for the Explain thread flow)

Fixed Issues

$ https://github.com/Expensify/Expensify/issues/603700

Tests

Prerequisite: Trigger an automated MOVED_TRANSACTION report action with reasoning:

  1. Create (or use) a workspace with Delayed Submission enabled (Settings > Workspace > Workflows > Delayed submission)
  2. Add a workspace rule that will trigger a violation (e.g., Settings > Workspace > Rules > set a max expense amount like $10)
  3. Create a report on that workspace with at least two expenses: one that violates the rule (e.g., $50 expense exceeding the $10 max) and one that is clean (e.g., $5 expense)
  4. Wait for Concierge to harvest the report on the delayed submission schedule (or trigger harvesting manually on dev)
  5. After harvesting, the violating expense will be moved to a new report and the clean expense's report will be submitted. The moved expense's transaction thread will have a MOVED_TRANSACTION action with reasoning in its originalMessage.

Test steps:

  1. Open the transaction thread for the expense that was moved by Concierge during harvesting (from the prerequisite above)
  2. Verify the "moved this expense from..." message displays a sparkle icon and an "Explain" link
  3. Tap the "Explain" link
  4. Verify a child thread opens with Concierge and "Please explain this to me." is posted
  5. Verify Concierge responds with an explanation of why the expense was moved
  6. Open a transaction thread where the expense was moved manually (no reasoning)
  7. Verify the "moved this expense from..." message renders as plain muted text without an Explain link (existing behavior)
  8. Verify the context menu on a MOVED_TRANSACTION action with reasoning shows the "Explain" option
  • Verify that no errors appear in the JS console

Offline tests

The Explain link opens a child thread and posts a message — this follows the same offline behavior as the existing Explain feature on MODIFIED_EXPENSE and SUBMITTED actions. When offline, the thread creation and message should be queued and sent when connectivity is restored.

QA Steps

Prerequisite: Trigger an automated MOVED_TRANSACTION report action with reasoning on staging:

  1. On staging, create (or use) a workspace with Delayed Submission enabled (Settings > Workspace > Workflows > Delayed submission)
  2. Add a workspace rule that will trigger a violation (e.g., Settings > Workspace > Rules > set a max expense amount like $10)
  3. Create a report on that workspace with at least two expenses: one that violates the rule (e.g., $50 expense exceeding the $10 max) and one that is clean (e.g., $5 expense)
  4. Wait for Concierge to harvest the report (this happens automatically on the delayed submission schedule). After harvesting, the violating expense will be moved to a new report with a MOVED_TRANSACTION action that includes reasoning.

Test steps:

  1. Open the transaction thread for the moved expense (from the prerequisite above)
  2. Verify the "moved this expense from..." message has a sparkle icon and "Explain" link
  3. Tap "Explain" and verify Concierge explains why the expense was moved
  4. Open a manually-moved expense thread and verify no Explain link appears
  • 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
  • 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 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:
    • 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: mWeb Chrome

iOS: Native

iOS: mWeb Safari

MacOS: Chrome / Safari

When Concierge automatically moves a transaction (e.g. due to policy
violations during harvesting), the backend now includes a reasoning
field in the MOVED_TRANSACTION action. This change renders the
Explain link on those actions so users can ask Concierge why their
expense was moved.

Co-authored-by: Alex Beaman <Beamanator@users.noreply.github.com>
@MelvinBot MelvinBot requested a review from a team March 5, 2026 13:56
Co-authored-by: Alex Beaman <Beamanator@users.noreply.github.com>
@MelvinBot
Copy link
Contributor Author

Fixed the failing Prettier check. The ternary expression in MovedTransactionAction.tsx (line 62-64) needed to be collapsed to a single line per Prettier's formatting rules.

@MelvinBot
Copy link
Contributor Author

The failing check (test (job 5)) is unrelated to this PR's code changes — it's an infrastructure/network failure.

Analysis: The job failed during "Set up job" before any tests ran. GitHub Actions couldn't download the 1Password/load-secrets-action dependency due to a transient network error: Error while copying content to a stream. This was retried twice with backoff and failed all attempts.

Evidence: The failure occurred at the action download phase, not during test execution. The PR changes (MovedTransactionAction.tsx, PureReportActionItem.tsx, OriginalMessage.ts) were never reached. All other test jobs (1-4, 6-8) passed successfully.

Next step: Please re-run the failed job — it should pass on retry since this was a transient network issue.

@codecov
Copy link

codecov bot commented Mar 5, 2026

Codecov Report

✅ Changes either increased or maintained existing code coverage, great job!

Files with missing lines Coverage Δ
...onents/ReportActionItem/MovedTransactionAction.tsx 100.00% <100.00%> (+100.00%) ⬆️
src/pages/inbox/report/PureReportActionItem.tsx 56.65% <ø> (+0.12%) ⬆️
... and 13 files with indirect coverage changes

@Beamanator Beamanator requested a review from huult March 5, 2026 15:48
@Beamanator Beamanator marked this pull request as ready for review March 5, 2026 15:48
@Beamanator Beamanator requested a review from a team as a code owner March 5, 2026 15:48
@melvin-bot melvin-bot bot requested review from brunovjk and trjExpensify and removed request for a team March 5, 2026 15:48
@melvin-bot
Copy link

melvin-bot bot commented Mar 5, 2026

@brunovjk 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]

@melvin-bot melvin-bot bot removed the request for review from a team March 5, 2026 15:48
@Beamanator Beamanator removed the request for review from brunovjk March 5, 2026 15:49
@Beamanator
Copy link
Contributor

Sorry @brunovjk - assigned @huult from slack convo 🙏

@Beamanator
Copy link
Contributor

@MelvinBot please add automatic tests to this PR

@huult
Copy link
Contributor

huult commented Mar 5, 2026

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 that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
  • 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 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 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.ts 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 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.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: HybridApp
Screen.Recording.2026-03-06.at.23.18.52.mp4
Android: mWeb Chrome
Screen.Recording.2026-03-06.at.23.20.46.mp4
iOS: HybridApp
Screen.Recording.2026-03-06.at.23.25.06.mp4
iOS: mWeb Safari
Screen.Recording.2026-03-06.at.23.29.33.mp4
MacOS: Chrome / Safari
Screen.Recording.2026-03-06.at.23.12.41.mp4
Screen.Recording.2026-03-06.at.23.14.29.mp4

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: e1abca43cb

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment on lines +51 to +53
if (hasReasoning(action)) {
return (
<ReportActionItemMessageWithExplain

Choose a reason for hiding this comment

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

P2 Badge Keep pending-delete formatting when reasoning is present

The new hasReasoning(action) early return bypasses the isPendingDelete branch, so a MOVED_TRANSACTION action with reasoning from a report marked pendingFields.preview=DELETE no longer renders with the deleted (<del>) styling and text-only fallback. In that state, users will see an active-looking message (including links/Explain) for an action that should still appear as deleted, which is a regression from the previous behavior in this component.

Useful? React with 👍 / 👎.

Copy link
Contributor

Choose a reason for hiding this comment

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

Yeah I considered that, but I believe the other callers of ReportActionItemMessageWithExplain act the same

Unit tests for the hasReasoning utility covering: non-empty reasoning,
missing reasoning, empty string reasoning, and null/undefined actions.

UI tests for MOVED_TRANSACTION actions verifying the Explain link renders
when reasoning is present and is absent when reasoning is not present.

Co-authored-by: Alex Beaman <Beamanator@users.noreply.github.com>
@MelvinBot MelvinBot requested a review from a team as a code owner March 5, 2026 15:59
@melvin-bot melvin-bot bot requested review from ZhenjaHorbach and removed request for a team March 5, 2026 15:59
@melvin-bot
Copy link

melvin-bot bot commented Mar 5, 2026

@ZhenjaHorbach 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]

@MelvinBot
Copy link
Contributor Author

Added automatic tests in a313014:

Unit tests (tests/unit/ReportActionsUtilsTest.ts) — hasReasoning utility:

  • Returns true when the action has a non-empty reasoning field
  • Returns false when the action has no reasoning field
  • Returns false when reasoning is an empty string
  • Returns false when the action is null or undefined

UI tests (tests/ui/PureReportActionItemTest.tsx) — MOVED_TRANSACTION action rendering:

  • Renders plain "moved this expense" message without Explain link when action has no reasoning
  • Renders "moved this expense" message with Explain link when action has reasoning

All 6 tests pass locally.

@Beamanator
Copy link
Contributor

@MelvinBot pull main and resolve conflicts

Resolved conflict in tests/unit/ReportActionsUtilsTest.ts by keeping
both the new isRejectedAction tests from main and the hasReasoning
tests from this branch.

Co-authored-by: Alex Beaman <Beamanator@users.noreply.github.com>
@MelvinBot
Copy link
Contributor Author

Merged main and resolved conflicts in ae43038.

The only conflict was in tests/unit/ReportActionsUtilsTest.ts — both main and this branch added new test suites at the end of the file. Resolved by keeping both: the isRejectedAction tests from main and the hasReasoning tests from this branch.

@huult
Copy link
Contributor

huult commented Mar 5, 2026

Please ping me when it's ready

@melvin-bot
Copy link

melvin-bot bot commented Mar 6, 2026

🎯 @huult, thanks for reviewing and testing this PR! 🎉

An E/App issue has been created to issue payment here: #84425.

@huult
Copy link
Contributor

huult commented Mar 6, 2026

It seems no internal engineer is assigned.

@MelvinBot
Copy link
Contributor Author

The failing check (Reassure Performance Tests) is unrelated to this PR.

Analysis: The error is TypeError: Cannot read properties of undefined (reading 'default') at addTrailingForwardSlash in src/libs/ReportUtils.ts:9722, called from getReportIDFromUrl. This is a test environment issue where ROUTES.REPORT is undefined during module initialization — it has nothing to do with the files changed in this PR (MovedTransactionAction.tsx, PureReportActionItem.tsx, OriginalMessage.ts, and test files).

Evidence: The same perf-tests check is also failing on main (run 22852014430) and on other unrelated branches (e.g., @zfurtak/change-select-iconsrun 22851829367). This is a pre-existing failure across the repo, not introduced by this PR.

@Beamanator Beamanator requested a review from a team March 9, 2026 12:01
@melvin-bot melvin-bot bot requested review from jjcoffee and removed request for a team March 9, 2026 12:01
@melvin-bot
Copy link

melvin-bot bot commented Mar 9, 2026

@jjcoffee 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]

@Beamanator Beamanator removed the request for review from jjcoffee March 9, 2026 12:08
@Beamanator
Copy link
Contributor

@Beamanator Could you check 0:12 in the video? There is a brief blank moment after the text message renders. I think we may need to improve it. This issue happens on Android and iOS mobile (mWeb and native).

Yeah this is the same for all Explain functions for now, will upgrade in the near future 👍

Tried adding an internal reviewer, sorry @jjcoffee - will post in slack to get one

@Beamanator
Copy link
Contributor

perf tests most likely fixed in #84571

@MelvinBot
Copy link
Contributor Author

The failing check (perf-tests) was caused by the branch being slightly behind main. The perf-test CI merges main into the PR commit during its run, and the stale state of the branch caused a duplicate isSelfTourViewed declaration in MoneyRequestReportPreviewContent.tsx — a file not changed by this PR.

The latest merge commit (092bd6a) brought the branch up to date with main, and all checks are now passing (perf-tests, all 8 test jobs, typecheck, ESLint, Prettier, etc.). The only remaining pending items are two iOS builds which are unrelated. No code fix was needed.

@Beamanator Beamanator merged commit 7c33657 into main Mar 9, 2026
32 checks passed
@Beamanator Beamanator deleted the claude-addExplainToMovedTransaction branch March 9, 2026 12:56
@github-actions
Copy link
Contributor

github-actions bot commented Mar 9, 2026

🚧 @Beamanator has triggered a test Expensify/App build. You can view the workflow run here.

@OSBotify
Copy link
Contributor

OSBotify commented Mar 9, 2026

✋ 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
Contributor

OSBotify commented Mar 9, 2026

🚀 Deployed to staging by https://github.com/Beamanator in version: 9.3.34-0 🚀

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

@lanitochka17
Copy link

The QA team isn't receiving any movement message from the concierge. Do I need a special account for this?

Screenrecorder-2026-03-10-20-09-54-213.mp4

@huult
Copy link
Contributor

huult commented Mar 10, 2026

@lanitochka17 Which option did you choose for Delay Submission? Daily, weekly, or something else?

@lanitochka17
Copy link

@huult Daily

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/luacmartins in version: 9.3.34-2 🚀

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

@huult
Copy link
Contributor

huult commented Mar 18, 2026

@Beamanator It seems MelvinBot didn’t create a payment ticket. Could you please create one?

@Beamanator
Copy link
Contributor

oh wtf! yeah will check it out

@huult
Copy link
Contributor

huult commented Mar 19, 2026

Thank you

@huult
Copy link
Contributor

huult commented Mar 20, 2026

@Beamanator Sorry, we already have a ticket for the payment. My mistake

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.

7 participants