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

Improve creating expenses on Collect with Instant Submit #36388

Merged
merged 27 commits into from
Mar 7, 2024

Conversation

youssef-lr
Copy link
Contributor

@youssef-lr youssef-lr commented Feb 13, 2024

Details

Held on https://github.com/Expensify/Auth/pull/9916

cc @Beamanator

Fixed Issues

$ #34955

Tests

  • Verify that no errors appear in the JS console
  1. Create a Collect policy in OldDot, verify it has the autoReportingFrequency set to instant, if it doesn't, run the following in the policy page as the admin: const p = Policy.getCurrent(); p.policy.autoReportingFrequency = 'instant'; p.save();
  2. Invite a member to the workspace submitter@gmail.com.
  3. Invite another member approver@gmail.com to the workspace, set it as the default approver.
  4. Log in as the submitter in NewDot, and create your first expense report in the workspace chat.
  5. Create another request and make sure it goes to the same report preview.
  6. Click on the report preview to navigate to the expense report.
  7. Click on the '+' and make sure you see Request Money, click on it and make sure the request gets added to the current report.
  8. Approve the report as the approver.
  9. Create another request, and make sure this time it goes to a new report.
  10. Repeat these steps using the Request Money Scan tab, Manual Split, Scan Split, & Distance.

Offline tests

The same steps as above, except, go offline before requesting money, then go back online. Make sure everything looks right as described in the s

QA Steps

  • Verify that no errors appear in the JS console
  1. Create a Collect policy in OldDot, verify it has the autoReportingFrequency set to instant, if it doesn't, run the following in the policy page as the admin: const p = Policy.getCurrent(); p.policy.autoReportingFrequency = 'instant'; p.save();
  2. Invite a member to the workspace submitter@gmail.com.
  3. Invite another member approver@gmail.com to the workspace, set it as the default approver.
  4. Log in as the submitter in NewDot, and create your first expense report in the workspace chat.
  5. Create another request and make sure it goes to the same report preview.
  6. Click on the report preview to navigate to the expense report.
  7. Click on the '+' and make sure you see Request Money, click on it and make sure the request gets added to the current report.
  8. Approve the report as the approver.
  9. Create another request, and make sure this time it goes to a new report.
  10. Repeat these steps using the Request Money Scan tab, Manual Split, Scan Split, & Distance.

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 / Chrome
    • iOS / native
    • iOS / 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 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 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
      • 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:
    • 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 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.js 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 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(themeColors.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 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 author checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari
Screen.Recording.2024-02-23.at.03.06.39.mov
MacOS: Desktop

@youssef-lr youssef-lr requested a review from a team as a code owner February 13, 2024 00:06
@youssef-lr youssef-lr self-assigned this Feb 13, 2024
@melvin-bot melvin-bot bot requested review from hoangzinh and removed request for a team February 13, 2024 00:06
Copy link

melvin-bot bot commented Feb 13, 2024

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

@youssef-lr youssef-lr removed the request for review from hoangzinh February 13, 2024 00:06
@youssef-lr youssef-lr marked this pull request as draft February 13, 2024 00:06
@youssef-lr youssef-lr changed the title Youssef instant submit collect Improve creating expenses on Collect with Instant Submit Feb 13, 2024
@youssef-lr youssef-lr changed the title Improve creating expenses on Collect with Instant Submit [HOLD Auth#9916] Improve creating expenses on Collect with Instant Submit Feb 13, 2024
@youssef-lr youssef-lr changed the title [HOLD Auth#9916] Improve creating expenses on Collect with Instant Submit Improve creating expenses on Collect with Instant Submit Feb 22, 2024
@youssef-lr youssef-lr marked this pull request as ready for review February 23, 2024 03:06
@youssef-lr youssef-lr requested a review from a team February 23, 2024 03:10
@melvin-bot melvin-bot bot requested review from hoangzinh and removed request for a team February 23, 2024 03:10
Copy link

melvin-bot bot commented Feb 23, 2024

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

@@ -1728,7 +1735,7 @@ function createSplitsAndOnyxData(
// For Control policy expense chats, if the report is already approved, create a new expense report
let oneOnOneIOUReport: OneOnOneIOUReport = oneOnOneChatReport.iouReportID ? allReports?.[`${ONYXKEYS.COLLECTION.REPORT}${oneOnOneChatReport.iouReportID}`] : null;
const shouldCreateNewOneOnOneIOUReport =
!oneOnOneIOUReport || (isOwnPolicyExpenseChat && ReportUtils.isControlPolicyExpenseReport(oneOnOneIOUReport) && ReportUtils.isReportApproved(oneOnOneIOUReport));
!oneOnOneIOUReport || (isOwnPolicyExpenseChat && ReportUtils.isPaidGroupPolicy(oneOnOneIOUReport) && ReportUtils.isReportApproved(oneOnOneIOUReport));
Copy link
Contributor

Choose a reason for hiding this comment

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

Just wanna double check whether we should use ReportUtils.isPaidGroupPolicyExpenseReport instead of ReportUtils.isPaidGroupPolicy here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Just wanna double check whether we should use ReportUtils.isPaidGroupPolicyExpenseReport instead of ReportUtils.isPaidGroupPolicy here.

It doesn't really matter, both should work fine.

@@ -4255,7 +4255,7 @@ function canRequestMoney(report: OnyxEntry<Report>, policy: OnyxEntry<Policy>, o
if (isMoneyRequestReport(report)) {
const isOwnExpenseReport = isExpenseReport(report) && isOwnPolicyExpenseChat;
if (isOwnExpenseReport && PolicyUtils.isPaidGroupPolicy(policy)) {
return isDraftExpenseReport(report);
return isDraftExpenseReport(report) || (PolicyUtils.isInstantSubmitEnabled(policy) && isProcessingReport(report));
Copy link
Contributor

Choose a reason for hiding this comment

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

Hi @youssef-lr is there any doc that helps me verify this logic? Or can you help to leave a comment in code to explain it? Thanks

Copy link
Contributor Author

@youssef-lr youssef-lr Feb 23, 2024

Choose a reason for hiding this comment

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

I can add a comment. There is a doc, but I think you might not have access to it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think this comment already explains this logic. If Instant Submit is turned on, we can add expenses to an already submitted report. If reporting frequency is set to 'Weekly', then we can only add expenses to draft reports (i.e. not submitted yet).

Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks for clarifying @youssef-lr .

@hoangzinh
Copy link
Contributor

hoangzinh commented Feb 24, 2024

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.

Screenshots/Videos

Android: Native
Screen.Recording.2024-02-27.at.15.27.22.android.mp4
Android: mWeb Chrome
Screen.Recording.2024-02-27.at.17.05.29.android.chrome.mp4
iOS: Native
Screen.Recording.2024-02-27.at.17.10.25.ios.1.mp4
Screen.Recording.2024-02-27.at.17.12.49.ios.2.mov
iOS: mWeb Safari
Screen.Recording.2024-02-27.at.17.32.42.ios.safari.mov
MacOS: Chrome / Safari
Screen.Recording.2024-02-26.at.23.50.05.web.mp4
Screen.Recording.2024-02-27.at.14.42.59.web.manual.scan.mov
Screen.Recording.2024-02-27.at.14.45.04.web.distance.mp4
MacOS: Desktop
Screen.Recording.2024-02-27.at.15.02.30.desktop.mp4

@youssef-lr
Copy link
Contributor Author

friendly bump @hoangzinh

@hoangzinh
Copy link
Contributor

@youssef-lr sure, I'm complete recordings. Will try to complete it within today

@youssef-lr
Copy link
Contributor Author

Thanks!

Copy link
Contributor

@hoangzinh hoangzinh left a comment

Choose a reason for hiding this comment

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

LGTM

@melvin-bot melvin-bot bot requested a review from rlinoz February 27, 2024 10:35
Copy link

melvin-bot bot commented Feb 27, 2024

@rlinoz 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 requested a review from techievivek March 4, 2024 12:07
Copy link

melvin-bot bot commented Mar 4, 2024

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

@youssef-lr
Copy link
Contributor Author

Awesome thanks! All yours @Beamanator!

@youssef-lr youssef-lr removed the request for review from techievivek March 4, 2024 12:12
@youssef-lr
Copy link
Contributor Author

Not sure why you got assigned @techievivek, Alex is on this :D

* - report is a draft
* - report is a processing expense report and its policy has Instant reporting frequency
*/
function canAddTransactionsToMoneyRequest(report: OnyxEntry<Report>): boolean {
Copy link
Contributor

Choose a reason for hiding this comment

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

NAB: Rename to canAddOrDeleteTransactionFromMoneyRequest or something like that so we don't have to add this comment // If the report supports adding transactions to it, then it also supports deleting transactions from it..

Copy link
Contributor Author

Choose a reason for hiding this comment

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

True true, on it

@@ -2957,11 +2972,11 @@ function buildOptimisticExpenseReport(chatReportID: string, policyID: string, pa
const formattedTotal = CurrencyUtils.convertToDisplayString(storedTotal, currency);
const policy = getPolicy(policyID);

const isFree = policy?.type === CONST.POLICY.TYPE.FREE;
const isInstantSubmitEnabled = PolicyUtils.isInstantSubmitEnabled(policy);

// Define the state and status of the report based on whether the policy is free or paid
Copy link
Contributor

Choose a reason for hiding this comment

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

We can remove this comment, or update it to match the new condition.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think the code is self-explanatory, so we can remove

@youssef-lr
Copy link
Contributor Author

youssef-lr commented Mar 7, 2024

Updated @rlinoz! I think Alex is OOO til Monday. He hasn't requested any changes or anything since his last review except that we need to test, so let's try to get this merged today! 🙏

@@ -1285,14 +1285,13 @@ function canDeleteReportAction(reportAction: OnyxEntry<ReportAction>, reportID:
// For now, users cannot delete split actions
const isSplitAction = reportAction?.originalMessage?.type === CONST.IOU.REPORT_ACTION_TYPE.SPLIT;

if (isSplitAction || isSettled(String(reportAction?.originalMessage?.IOUReportID)) || (!isEmptyObject(report) && isReportApproved(report))) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I removed this logic as it's already handled in canAddOrDeleteTransactions

function canAddTransactionsToMoneyRequest(report: OnyxEntry<Report>): boolean {
if (!isIOUReport(report) && !isExpenseReport(report)) {
function canAddOrDeleteTransactions(moneyRequestReport: OnyxEntry<Report>): boolean {
if (!isMoneyRequest(moneyRequestReport)) {
Copy link
Contributor

@rlinoz rlinoz Mar 7, 2024

Choose a reason for hiding this comment

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

isMoneyRequest only check for IOU reports, and I think this is making the button not show up inside the expense report (step 7 of the tests).

I think you will need to update this to use isMoneyRequestReport as well

Suggested change
if (!isMoneyRequest(moneyRequestReport)) {
if (!isMoneyRequest(moneyRequestReport) && !isMoneyRequestReport(moneyRequestReport)) {

Copy link
Contributor

Choose a reason for hiding this comment

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

This might fix the failing tests as well

Copy link
Contributor Author

Choose a reason for hiding this comment

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

woops just a mistake, will update

Copy link
Contributor Author

Choose a reason for hiding this comment

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

if (!isMoneyRequest(moneyRequestReport) && !isMoneyRequestReport(moneyRequestReport))

It should only be isMoneyRequestReport here, because we can't add transactions to a transaction :D

@rlinoz
Copy link
Contributor

rlinoz commented Mar 7, 2024

After approving a report if I go to the submitter account and send a new request I get an error because it tries to add to a report that has already been approved (the FE just doesn't know it):
Screenshot 2024-03-07 at 12 19 03

Will we address this in the backend eventually?

Another option is if we get this specific error we create a new report with the new request.

@youssef-lr
Copy link
Contributor Author

Do you have bwm running?

@rlinoz
Copy link
Contributor

rlinoz commented Mar 7, 2024

I do, it is just a little slow sometimes

@youssef-lr
Copy link
Contributor Author

My guess is you tried to submit when the pusher update marking the report as approved wasn't applied yet. Can you try approving, and waiting a bit until you see it was approved, then submit?

@youssef-lr
Copy link
Contributor Author

Another option is if we get this specific error we create a new report with the new request.

Yeah we could explore this for cases where a pusher update is missed, but in production this scenario rarely happens.

@rlinoz
Copy link
Contributor

rlinoz commented Mar 7, 2024

I think I got it:

With bwm.sh running

  1. [Employee] Send a money request from the workspace chat
  2. [Approver] Approve the request
  3. [Employee] The report is never updated if you don't leave the workspace chat
Screen.Recording.2024-03-07.at.12.34.56.mov

Anyway, it doesn't look related to this changes, so I think we are good here

@youssef-lr
Copy link
Contributor Author

Weird @rlinoz, it gets updated for me in real time:

Screen.Recording.2024-03-07.at.16.41.31.mov

@youssef-lr youssef-lr merged commit 9bbe923 into main Mar 7, 2024
16 checks passed
@youssef-lr youssef-lr deleted the youssef_instant_submit_collect branch March 7, 2024 15:42
@OSBotify
Copy link
Contributor

OSBotify commented Mar 7, 2024

✋ 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 8, 2024

🚀 Deployed to staging by https://github.com/youssef-lr in version: 1.4.49-0 🚀

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

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/luacmartins in version: 1.4.50-5 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 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.

5 participants