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

[TS migration] Migrate StepScreenWrapper, StepScreenDragAndDropWrapper, IOURequestStepConfirmation and IOURequestStepCategory pages to TypeScript #39175

Merged

Conversation

BrtqKr
Copy link
Contributor

@BrtqKr BrtqKr commented Mar 28, 2024

Details

Fixed Issues

$ #38918
$ #38913
PROPOSAL:

Tests

  1. Select a chat
  2. Press + on the left side of the input
  3. Press "request money"
  4. Go through every possible flow selecting different currency, value, description, merchant, category, tag
  5. Press request and validate if the money request resulted in a proper chat entry being displayed.
  • Verify that no errors appear in the JS console

Offline tests

  1. Select a chat
  2. Turn off the network connection, for example toggle the flight mode
  3. Press + on the left side of the input
  4. Press "request money"
  5. Go through every possible flow selecting different currency, value, description, merchant, category, tag
  6. Press request and validate if the money request resulted in a proper placeholder for the entry being displayed.
  7. After turning on the network, the request should be sent, as in the standard flow

QA Steps

Same as in Tests/Offline tests section

  • 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 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 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.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 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.
  • 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
Screen.Recording.2024-04-03.at.17.59.24.mov
Android: mWeb Chrome
Screen.Recording.2024-04-04.at.10.32.24.mov
iOS: Native
Simulator.Screen.Recording.-.iPhone.15.Pro.-.2024-04-03.at.17.38.41.mp4
iOS: mWeb Safari
Simulator.Screen.Recording.-.iPhone.15.Pro.-.2024-04-03.at.18.46.31.mp4
MacOS: Chrome / Safari
Screen.Recording.2024-04-04.at.10.56.39.mov
MacOS: Desktop
Screen.Recording.2024-04-04.at.10.40.11.mov

@kubabutkiewicz
Copy link
Contributor

@BrtqKr any updates here ?

@BrtqKr
Copy link
Contributor Author

BrtqKr commented Mar 29, 2024

@BrtqKr any updates here ?

only some parts of IOURequestStepCategory are left, but the transactions for the IOU utils calls haven't been validated at any point, so it's going a little bit slower than I expected

Comment on lines 214 to 227
alternateText: null,
alternateText: undefined,
allReportErrors: OptionsListUtils.getAllReportErrors(report, reportActions),
brickRoadIndicator: null,
tooltipText: null,
subtitle: null,
login: null,
accountID: null,
login: undefined,
accountID: undefined,
reportID: '',
phoneNumber: null,
phoneNumber: undefined,
isUnread: null,
isUnreadWithMention: null,
hasDraftComment: false,
keyForList: null,
searchText: null,
keyForList: undefined,
searchText: undefined,
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@kubabutkiewicz from what I've seen you've been working on that part, was it necessary for everything in here to be marked as null? It's been causing conflicts with Participant type and since it had to be used as Participant | OptionData because of this:

    const participants = useMemo(
        () =>
            transaction?.participants?.map((participant) => {
                const participantAccountID = participant.accountID ?? 0;
                return participantAccountID ? OptionsListUtils.getParticipantsOption(participant, personalDetails) : OptionsListUtils.getReportOption(participant);
            }),
        [transaction?.participants, personalDetails],
    );

null and undefined discrepancy wouldn't allow this to go through. Additionally I don't see any places where this is checked for null explicitly

Copy link
Contributor

Choose a reason for hiding this comment

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

I am not sure 100%, but I think the null's was there when I started to work on that and I just left 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.

ok, I'll check it during tests then, thank you

return React.forwardRef(WithCurrentUserPersonalDetails);
return WithCurrentUserPersonalDetails;
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 break a lot of components, I think forwardRef should stay 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.

leftover, in the end I used a hook, so there wouldn't be any type issues anyway

}

/** Save the preferred payment method for a policy */
function savePreferredPaymentMethod(policyID: string, paymentMethod: PaymentMethodType) {
Onyx.merge(`${ONYXKEYS.NVP_LAST_PAYMENT_METHOD}`, {[policyID]: paymentMethod});
}

export type {GPSPoint as GpsPoint};
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's used in two separate places and the other type originating from coords has many more fields, which aren't optional, so we probably want to avoid applying it. I can still define this type inline though, up to you 🤷

Comment on lines 29 to 40
/** The draft transaction that holds data to be persisted on the current transaction */
splitDraftTransaction: OnyxEntry<Transaction>;
/** The policy of the report */
policy: OnyxEntry<Policy>;
/** Collection of categories attached to a policy */
policyCategories: OnyxEntry<PolicyCategories>;
/** Collection of tags attached to a policy */
policyTags: OnyxEntry<PolicyTagList>;
/** The actions from the parent report */
reportActions: OnyxEntry<ReportActions>;
/** Session info for the currently logged in user. */
session: OnyxEntry<Session>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: Add empty lines between props here


function IOURequestStepCategory({
report,
stackProps: {
Copy link
Contributor

Choose a reason for hiding this comment

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

We don't use stackProps anywhere in the project, let's use route as before

Copy link
Contributor

Choose a reason for hiding this comment

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

Also you might face the problem described here, please have a look

Comment on lines 129 to 132
const IOURequestStepCategoryWithWritableReportOrNotFound = withWritableReportOrNotFound(IOURequestStepCategory);
/* eslint-disable rulesdir/no-negated-variables */
const IOURequestStepCategoryWithFullTransactionOrNotFound = withFullTransactionOrNotFound(IOURequestStepCategoryWithWritableReportOrNotFound);
export default withOnyx<IOURequestStepCategoryProps, IOURequestStepCategoryOnyxProps>({
Copy link
Contributor

Choose a reason for hiding this comment

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

The order of hocs have changed a(b(c())) -> c(b(a())). This might break the component in very unexpected ways 😅

Here is how Marcin did it in other PR

Copy link
Contributor

Choose a reason for hiding this comment

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

Was it added by mistake? Or extracted from another file?

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 changed some of the IOU utils to accept named params, but in the meantime, someone removed this whole file. I already got rid of it

Comment on lines 537 to 540
const IOURequestStepConfirmationWithWritableReportOrNotFound = withWritableReportOrNotFound(IOURequestStepConfirmation);
/* eslint-disable rulesdir/no-negated-variables */
const IOURequestStepConfirmationWithFullTransactionOrNotFound = withFullTransactionOrNotFound(IOURequestStepConfirmationWithWritableReportOrNotFound);
export default withOnyx<IOURequestStepConfirmationProps, IOURequestStepConfirmationOnyxProps>({
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here

const isEditingSplitBill = isEditing && iouType === CONST.IOU.TYPE.SPLIT;
const transactionCategory = ReportUtils.getTransactionDetails(isEditingSplitBill && !lodashIsEmpty(splitDraftTransaction) ? splitDraftTransaction : transaction)?.category;

const reportAction = reportActions?.[report?.parentReportActionID ?? reportActionID] ?? null;
Copy link
Contributor

Choose a reason for hiding this comment

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

Just saying: ?? instead of || might change the logic a bit, you might have to use eslint disable comment.

Copy link
Contributor

Choose a reason for hiding this comment

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

An in other places too, just be careful and let's test the component thoroughly

Copy link
Contributor Author

Choose a reason for hiding this comment

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

it didn't seem to break this, but I don't want to risk breaking anything, I'll leave it as it was

Comment on lines 38 to 41
policy: OnyxEntry<Policy>;
policyCategories: OnyxEntry<PolicyCategories>;
policyTags: OnyxEntry<PolicyTagList>;
personalDetails: OnyxEntry<PersonalDetailsList>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's not remove comments for props

report: reportPropTypes,
type IOURequestStepConfirmationProps = IOURequestStepConfirmationOnyxProps &
WithWritableReportOrNotFoundProps<typeof SCREENS.MONEY_REQUEST.STEP_CONFIRMATION> & {
transaction: OnyxEntry<Transaction>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here

Comment on lines 531 to 533
personalDetails: {
key: ONYXKEYS.PERSONAL_DETAILS_LIST,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

Go ahead and remove personalDetails from here, instead use useCurrentUserPersonalDetails hook, this should do the trick

Copy link
Contributor Author

Choose a reason for hiding this comment

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

it has already been removed on the main, so it got resolved during the branch update

@blazejkustra
Copy link
Contributor

Also typecheck is failing @BrtqKr

@fabioh8010
Copy link
Contributor

Any updates here @BrtqKr ?

@fedirjh
Copy link
Contributor

fedirjh commented Apr 7, 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 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.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 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.
  • 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
CleanShot.2024-04-08.at.07.27.22.mp4
CleanShot.2024-04-08.at.07.29.14.mp4
Android: mWeb Chrome
Screen.Recording.2024-04-08.at.7.33.57.AM.mov
iOS: Native
CleanShot.2024-04-08.at.07.03.22.mp4
CleanShot.2024-04-08.at.07.04.43.mp4
iOS: mWeb Safari
CleanShot.2024-04-08.at.07.08.58.mp4
MacOS: Chrome / Safari
CleanShot.2024-04-08.at.00.15.19.mp4
CleanShot.2024-04-08.at.00.17.40.mp4
MacOS: Desktop
CleanShot.2024-04-08.at.06.34.06.mp4
CleanShot.2024-04-08.at.06.35.32.mp4
CleanShot.2024-04-08.at.06.37.08.mp4

StepScreenWrapper.defaultProps = defaultProps;

export default StepScreenWrapper;
export default forwardRef(StepScreenWrapper);
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
export default forwardRef(StepScreenWrapper);
StepScreenWrapper.displayName = 'StepScreenWrapper';
export default StepScreenWrapper;

Why do we use forwardRef in this component?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

For some reason, when I was working on that, the steps where throwing errors during render attempt, but it might have been fixed when I changed the callOrReturn content. I already removed it

@BrtqKr BrtqKr requested a review from fedirjh April 8, 2024 08:49
@fedirjh
Copy link
Contributor

fedirjh commented Apr 8, 2024

Bug: Cannot request money from new users (whom you have not chatted with before)

  1. Select request money from the global creation menu
  2. Select any amount and press next
  3. Select an email address that you haven't chatted with before.
  4. Press "request money"
  5. Verify you are redirected to a new report and the money request is successful
Screen.Recording.2024-04-08.at.5.10.10.PM.mov

This is how it works on staging

Screen.Recording.2024-04-08.at.5.14.13.PM.mov

@BrtqKr
Copy link
Contributor Author

BrtqKr commented Apr 9, 2024

@fedirjh I ran this reproduction and it seems to be working as expected. If there are any steps I need to include, that are not present in the recording, please let me know

Screen.Recording.2024-04-09.at.11.49.58.mov

@fedirjh
Copy link
Contributor

fedirjh commented Apr 9, 2024

If there are any steps I need to include, that are not present in the recording, please let me know

@BrtqKr It seems you have tested the split flow. However, the bug occurs with the request flow.

CleanShot.2024-04-09.at.15.16.52.mp4

Comment on lines 177 to 179
if (!report || !transaction) {
return;
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
if (!report || !transaction) {
return;
}
if (!transaction) {
return;
}

@BrtqKr This line is causing the bug in #39175 (comment) . We should allow creation of money requests when the report is not yet created.

@fedirjh
Copy link
Contributor

fedirjh commented Apr 9, 2024

It looks like we have some lint errors:

Screenshot 2024-04-09 at 5 15 16 PM

Copy link
Contributor

@fedirjh fedirjh left a comment

Choose a reason for hiding this comment

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

Looks good to me and tests well 🚀

Copy link

melvin-bot bot commented Apr 9, 2024

We did not find an internal engineer to review this PR, trying to assign a random engineer to #38918 as well as to this PR... Please reach out for help on Slack if no one gets assigned!

@melvin-bot melvin-bot bot requested a review from aldo-expensify April 9, 2024 23:00
@aldo-expensify aldo-expensify merged commit aed0bf0 into Expensify:main Apr 10, 2024
17 checks passed
@OSBotify
Copy link
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
Contributor

🚀 Deployed to staging by https://github.com/aldo-expensify in version: 1.4.62-0 🚀

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

1 similar comment
@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/aldo-expensify in version: 1.4.62-0 🚀

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

@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/aldo-expensify in version: 1.4.62-0 🚀

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

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/thienlnam in version: 1.4.62-17 🚀

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.

8 participants