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

fix workspace avatar it not updated #19750

Merged
merged 10 commits into from
Jun 5, 2023
Merged

Conversation

hungvu193
Copy link
Contributor

@hungvu193 hungvu193 commented May 29, 2023

Details

fix workspace avatar and workspace name are not updated

Fixed Issues

$ #19550
PROPOSAL: #19550 (comment)

Tests

  1. Go to Settings > Workspaces
  2. Create new workspace
  3. Close the modal
  4. Click on workspace chat in LHN
  5. Go to Settings > Workspaces
  6. Change the workspace picture
  7. Verify that the workspace picture in report screen is updated
  8. Change the workspace's name
  9. Verify that the workspace's name in report screen is updated.
  • Verify that no errors appear in the JS console

Offline tests

Same as Tests.

QA Steps

  1. Go to Settings > Workspaces
  2. Create new workspace
  3. Close the modal
  4. Click on workspace chat in LHN
  5. Go to Settings > Workspaces
  6. Change the workspace picture
  7. Verify that the workspace picture in report screen is updated
  8. Change the workspace's name
  9. Verify that the workspace's name in report screen is updated.
  • 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 / 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 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

Web

Screen.Recording.2023-05-30.at.00.20.21.mov

Mobile Web - Chrome

Screen.Recording.2023-05-30.at.00.31.09.mov

Mobile Web - Safari

Screen.Recording.2023-05-30.at.00.27.52.mov

Desktop

Screen.Recording.2023-05-30.at.00.26.02.mov

iOS

Screen.Recording.2023-05-30.at.00.23.00.mov

Android

Screen.Recording.2023-05-30.at.00.24.46.mov

@hungvu193 hungvu193 marked this pull request as ready for review May 29, 2023 17:33
@hungvu193 hungvu193 requested a review from a team as a code owner May 29, 2023 17:33
@melvin-bot melvin-bot bot requested review from abdulrahuman5196 and removed request for a team May 29, 2023 17:33
@melvin-bot
Copy link

melvin-bot bot commented May 29, 2023

@iwiznia @abdulrahuman5196 One of you needs to 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]

@hungvu193
Copy link
Contributor Author

@iwiznia @abdulrahuman5196 hey, I wanna discuss about this.
Actually when we changed the icon, we change the avatar inside policy, so I think it'd better to add the condition with the policy.

iwiznia
iwiznia previously approved these changes May 29, 2023
@abdulrahuman5196
Copy link
Contributor

@iwiznia @hungvu193
One other reason i was aligned with ReportUtils.getIcons is that it provides icons on various other types of reports like threads, rooms, types of rooms, etc not just the workspace icon. So even in future if some other icons comes with same issue we won't have to fix it again in the same way. But as you know it might include slight latency as we get the icons and check on equality.

So @iwiznia wanted to check since you had approved, is the policy.avatar more reliable? Since its basically the original proposal instead of passing icons we are using policy.avatar and introducing a prop just to fix this issue. That's why we went with the alternate proposal.
#19550 (comment)

@hungvu193 Let me know your thoughts as well.

@iwiznia
Copy link
Contributor

iwiznia commented May 29, 2023

Ah damn, sorry, yes, I agree ReportUtils.getIcons is better

@abdulrahuman5196
Copy link
Contributor

Thank you.

@hungvu193 could you kindly update the PR with the original approved proposal?

@hungvu193
Copy link
Contributor Author

hungvu193 commented May 30, 2023

Yeah, but actually if we want to compare icons inside ReportActionView we still need to use personalDetails, so we still need to pass another props to our ReportActionsView.
Also if we use comparing our icons props inside, it also won't make the component re-rendering because both of them depending on the allPolicies which was already updated before that. So that why I recommended to add a new props icons and pass it into ReportActionsView or we can check for the policy updated like in my PR. Let me know your thoughts on this @abdulrahuman5196 @iwiznia

const icons = ReportUtils.getIcons(this.props.report, this.props.personalDetails);
const nextIcons = ReportUtils.getIcons(nextProps.report, nextProps.personalDetails);
Screenshot 2023-05-30 at 10 39 31

@abdulrahuman5196
Copy link
Contributor

@hungvu193

but actually if we want to compare icons inside ReportActionView we still need to use personalDetails, so we still need to pass another props to our ReportActionsView

you don't need to pass it as props from parent view. You can directly access it from onyx like in the ReportActionItem

withPersonalDetails(),

@hungvu193
Copy link
Contributor Author

@hungvu193

but actually if we want to compare icons inside ReportActionView we still need to use personalDetails, so we still need to pass another props to our ReportActionsView

you don't need to pass it as props from parent view. You can directly access it from onyx like in the ReportActionItem

withPersonalDetails(),

How about my second concern? I realized if we calculated icons inside shouldcomponentUpdate it will always had same values between nextIcons and icons because, allPolicies had been updated before we get the information from it.

@abdulrahuman5196
Copy link
Contributor

@hungvu193 .

Ok got it. So the main concern is if the policy information gets changed we won't reload since we don't get the information as its not a prop of ReportActionsView.

So anyways regardless of ReportUtils.getIcons usage we would need policy as a prop. So for the current usecase policy.avatar is fixing and checking ReportUtils.getIcons would be redudent check.

I am aligned with the current approach based on the above. So I think if in future anyone wants more function they can use always use ReportUtils.getIcons and it would be working fine since we already have policy as props.

@abdulrahuman5196
Copy link
Contributor

Will start testing this out then.

@@ -340,6 +342,7 @@ class ReportScreen extends React.Component {
isComposerFullSize={this.props.isComposerFullSize}
isDrawerOpen={this.props.isDrawerOpen}
parentViewHeight={this.state.skeletonViewContainerHeight}
policy={policy}
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we pass the policies directly and have the filter in ReportActionsView similar to how MoneyRequestHeader is doing?

policies={this.props.policies}

The reason I saying is, for normal chats and group chats the policy would be undefined and we would be passing a undefined value, which won't be a good code practice. With the proposed way it will be in sync with existing code as well.

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Updated @abdulrahuman5196 !

const policy = this.props.policies[`${ONYXKEYS.COLLECTION.POLICY}${this.props.report.policyID}`];
const nextPolicy = nextProps.policies[`${ONYXKEYS.COLLECTION.POLICY}${nextProps.report.policyID}`];

if (!_.isEqual(policy, nextPolicy)) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Shouldn't avatar equality be enough? Policy will have other values for which we might not want to reload.

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

yeah, you're right, we can avoid unnecessary comparing. @abdulrahuman5196

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 updated and tested it as well.

@@ -120,6 +127,13 @@ class ReportActionsView extends React.Component {
}

shouldComponentUpdate(nextProps, nextState) {
const policy = this.props.policies[`${ONYXKEYS.COLLECTION.POLICY}${this.props.report.policyID}`];
Copy link
Contributor

Choose a reason for hiding this comment

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

@hungvu193 One change. This should be checked only before the icons equality check.
https://github.com/Expensify/App/blob/main/src/pages/home/report/ReportActionsView.js#L171

I don't think this is of high priority to be checked for equality first. Can we move this check just before the icons equality check?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Nice catch. Thank you @abdulrahuman5196 . I've updated the PR!

Copy link
Contributor

Choose a reason for hiding this comment

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

I don't think there is use in fetching the policy before and checking its equality on lower part. This policy is not used anywhere else.
can we move the policy and nextPolicy lines before the equality check?

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor Author

@hungvu193 hungvu193 May 31, 2023

Choose a reason for hiding this comment

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

// other condition
const policy = this.props.policies[`${ONYXKEYS.COLLECTION.POLICY}${this.props.report.policyID}`];
const nextPolicy = nextProps.policies[`${ONYXKEYS.COLLECTION.POLICY}${nextProps.report.policyID}`];
        if (lodashGet(policy, 'avatar') !== lodashGet(nextPolicy, 'avatar')) {
            return true;
        }

Somethings like this right? So we can avoid to calculate policy every time.
@abdulrahuman5196

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@abdulrahuman5196
Copy link
Contributor

@iwiznia
Could you kindly let us know on your thoughts on this as well? This is blocking PR now

#19750 (comment)
#19750 (comment)
#19750 (comment)

@iwiznia
Copy link
Contributor

iwiznia commented Jun 1, 2023

Could you kindly let us know on your thoughts on this as well? This is blocking PR now

🤔 so the question is if we fix the name problems here too or just the avatar?

@abdulrahuman5196
Copy link
Contributor

so the question is if we fix the name problems here too or just the avatar?

Yes. @iwiznia

@iwiznia
Copy link
Contributor

iwiznia commented Jun 1, 2023

Ah, ok. If we are touching the same places and makes sense to group the changes, then lets?

@abdulrahuman5196
Copy link
Contributor

abdulrahuman5196 commented Jun 1, 2023

Ok then @hungvu193 could you fix this? #19750 (comment)

@hungvu193
Copy link
Contributor Author

hungvu193 commented Jun 2, 2023

Ok then @hungvu193 could you fix this? #19750 (comment)

@abdulrahuman5196 this is actually another issue. Problem came from here:

{props.iouReport.hasOutstandingIOU ? (
<Text style={[styles.chatItemMessage, styles.cursorPointer, styles.colorMuted]}>
{lodashGet(message, 'html', props.translate('iou.payerOwesAmount', {payer: managerName, amount: reportAmount}))}
</Text>

The payer name is already updated, but we are displaying it only when we couldn't get the html from message, that's why even you reloaded the page, you still saw that the workspace name is not updated.
I'm happy to open another PR to fix this issue.
cc @iwiznia

@abdulrahuman5196
Copy link
Contributor

abdulrahuman5196 commented Jun 2, 2023

@hungvu193 The issue #19847 which we added here required the fix for both the workspace name in created message header and IOU message.

In a new workspace chat, the changed workspace name should be updated on the welcome workspace chat message as well as on the request money report dynamically

I wouldn't say it as different issue. I don't think we should only solve half the other issue we agreed to fix it as part of this pr

@abdulrahuman5196
Copy link
Contributor

@iwiznia I think we might be bugging you. 😶‍🌫️ . But wanted to close the loop and avoid future churns.

What do you think of this #19750 (comment)?
The other issue we included in this PR to solve has 2 sub issues.

  1. Workspace name not updated in the creation header message
  2. Workspace name not updated in IOU report

In a new workspace chat, the changed workspace name should be updated on the welcome workspace chat message as well as on the request money report dynamically

The 2nd sub-issue isn't in the code place where our current PR originally focused. - #19750 (comment). It could even need a separate proposal review. That was the original reason i thought to not merge the issues since it would require more changes at different place - #19750 (comment)

So the options here is

  1. original PR + full fix of the name issue(with sub-issue 1 and 2)
  2. original PR + name sub issue 1(change path same as our PR) and have a separate issue and proposal to solve name sub issue 2
  3. original PR only and have a separate issue and proposal for name issue.

My alignment was either to fix the name issue totally or totally not(1 and 3). But I am also fine with option 2, to solve as much as possible here and have a separate review on IOU workspace name not updated - #19847 (I think @hungvu193's alignment is on this option #19750 (comment)).

Kindly let us know of the path forward.

@iwiznia
Copy link
Contributor

iwiznia commented Jun 2, 2023

2 sounds best to me. We have a proposal here to solve this issue and that other subissue and they are fixed in the same place.
Then, let's update the other issue saying that one part of it has already been solved and that proposal should be for that part only.

Sounds good?

@abdulrahuman5196
Copy link
Contributor

Sure sounds good. Will start reviewing on this basis

@hungvu193
Copy link
Contributor Author

Sounds good to me too. I'll update my proposal at related issue.

@abdulrahuman5196
Copy link
Contributor

abdulrahuman5196 commented Jun 4, 2023

@hungvu193 Could you kindly include the tests to reflect the workspace name change as well?

And for offline test,

Shouldn't it be same as Tests? Not Bug is related to offline mode itself. No extra steps needed. The bug is both offline and online right?

@abdulrahuman5196
Copy link
Contributor

abdulrahuman5196 commented Jun 4, 2023

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

Screenshots/Videos

Web
Untitled.49.mp4
Mobile Web - Chrome
Untitled.47.mp4
Mobile Web - Safari
Untitled.51.mp4
Desktop
Untitled.48.mp4
iOS
Untitled.50.mp4
Android
Untitled.mp4

@hungvu193
Copy link
Contributor Author

Thanks for pointing that out @abdulrahuman5196 . I've just updated the steps.

@@ -41,6 +42,7 @@ const propTypes = {
...windowDimensionsPropTypes,
...withDrawerPropTypes,
...withLocalizePropTypes,
...policyPropTypes,
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't think we can use policyPropTypes because it has policyMemberList which we don't pass now.

Can we use the way you previously had? @hungvu193

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's ok. I've just updated it @abdulrahuman5196

Copy link
Contributor

@abdulrahuman5196 abdulrahuman5196 left a comment

Choose a reason for hiding this comment

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

Changes looks good and works well. Reviewers Checklist is also complete.

@iwiznia All yours.

@iwiznia iwiznia merged commit 71017e4 into Expensify:main Jun 5, 2023
@OSBotify
Copy link
Contributor

OSBotify commented Jun 5, 2023

✋ 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 Jun 5, 2023

🚀 Deployed to staging by https://github.com/iwiznia in version: 1.3.24-0 🚀

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

@OSBotify
Copy link
Contributor

OSBotify commented Jun 7, 2023

🚀 Deployed to production by https://github.com/roryabraham in version: 1.3.24-5 🚀

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

@OSBotify
Copy link
Contributor

OSBotify commented Jun 7, 2023

🚀 Deployed to production by https://github.com/roryabraham in version: 1.3.24-5 🚀

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

4 participants