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 suggestion menu closes on typing @ at second line #27490

Merged
merged 21 commits into from
Sep 26, 2023

Conversation

bernhardoj
Copy link
Contributor

@bernhardoj bernhardoj commented Sep 15, 2023

Details

On Android, typing a new next on a new line will trigger a scroll callback. The scroll callback is set to hide the suggestion menu.

Fixed Issues

$ #26197
PROPOSAL: #26197 (comment)

Tests

Same as QA Steps

  • Verify that no errors appear in the JS console

Offline tests

Same as QA Steps

QA Steps

  1. Open any chat
  2. On the composer, type anything on the first line and press Enter to go to the 2nd line
  3. Type @ on the 2nd line
  4. Verify a suggestion menu is showing
  5. Add multiple new lines to the composer so it's scrollable
  6. Add enough text to reach the end of the line with your cursor (the line should end with a space)
  7. Input "@", which should appear on the next line
  8. Verify that the suggestion list shows up
  9. Scroll the composer manually
  10. Verify that the suggestion menu disappears
  • If you scroll right after typing (< 1 s), it's acceptable for the suggestion menu not to disappear after this interaction

  • 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 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
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
    • 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 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 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

Web
Screen.Recording.2023-09-15.at.11.55.25.mov
Mobile Web - Chrome
Screen.Recording.2023-09-15.at.12.01.03.mov
Mobile Web - Safari
Screen.Recording.2023-09-15.at.11.58.18.mov
Desktop
Screen.Recording.2023-09-15.at.11.54.23.mov
iOS
Screen.Recording.2023-09-15.at.11.56.07.mov
Android
Screen.Recording.2023-09-15.at.11.59.58.mov

@bernhardoj bernhardoj requested a review from a team as a code owner September 15, 2023 04:31
@melvin-bot melvin-bot bot removed the request for review from a team September 15, 2023 04:31
@melvin-bot
Copy link

melvin-bot bot commented Sep 15, 2023

@cubuspl42 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 cubuspl42 September 15, 2023 04:31
return;
}
suggestionsRef.current.updateShouldShowSuggestionMenuToFalse(false);
}, [suggestionsRef]);

const debouncedHideSuggestionMenu = useMemo(() => _.debounce(hideSuggestionMenu, 200, true), [hideSuggestionMenu]);

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 set immediate of debounce to true, so the suggestion hides immediately when user scrolls the composer.

Copy link
Contributor

@cubuspl42 cubuspl42 Sep 15, 2023

Choose a reason for hiding this comment

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

Too be honest, I'm not sure if this is correct, as I have trouble reasoning about the current implementation. In the other thread I suggested something that's easier to reason about for me. Please let me know if the alternative way is also convincing to you.

if (!suggestionsRef.current) {
const hideSuggestionMenu = useCallback(() => {
if (!suggestionsRef.current || shouldIgnoreScrollCallback.current) {
shouldIgnoreScrollCallback.current = false;
Copy link
Contributor

@cubuspl42 cubuspl42 Sep 15, 2023

Choose a reason for hiding this comment

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

I'm not sure whether this is a right way to lower this flag...

Wouldn't this be more direct?

const debouncedLowerIsScrollLikelyLayoutTriggered = useDebounce(() => {
    isScrollLikelyLayoutTriggered.value = false;
}, 200);

const raiseIsScrollLikelyLayoutTriggered = () => {
    isScrollLikelyLayoutTriggered.value = true;
    debouncedLowerIsScrollLikelyLayoutTriggered();
}

Then, we could call raiseIsScrollLikelyLayoutTriggered when the text changes. And check if isScrollLikelyLayoutTriggered.value directly in the onScoll callback.

Copy link
Contributor

Choose a reason for hiding this comment

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

Also, I suggested using a useDebounce hook instead of directly calling _.debounce inside useMemo, because technically speaking starting a debounce is a side-effect...

I think that a possible implementation could be:

const useDebounce = (func, wait, options) => {
    const debouncedFnRef = useRef();

    useEffect(() => {
        const debouncedFn = _.debounce(func, wait, options);

        debouncedFnRef.current = debouncedFn;

        return () => debouncedFn.cancel();
    });

    return (...args) => {
        const debouncedFn = debouncedFnRef.current;

        if (debouncedFn) {
            debouncedFn(...args);
        }
    };
};

(Based on lodash debounce)

But this would need to be tested.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Interesting. I'm actually having trouble deciding where to set the value back to false, seeing your alternative is better. I will try it and the useDebounce hook and update if all going 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.

Found 2 issues:

  1. The useEffect does not have any deps so it's always triggered on re-render making the debounce get canceled all the time. I fixed it by putting func, wait, options into the deps array.
  2. We need a longer timeout now, from my testing 500 is enough. Looks like we need a longer time because we are debouncing it from onChangeText instead of from onScroll. The extra 300ms is possibly the time gap between onChangeText and onScroll calls.

The question is, are we okay to make the timeout 500ms?

Copy link
Contributor

Choose a reason for hiding this comment

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

The useEffect does not have any deps

Yeah, I was writing it out of my head, it was just a starting point. You're right that deps are required here.

The question is, are we okay to make the timeout 500ms?

You're talking about a Native build, I presume?

We're fine with a value that's good at distinguishing the layout-related scrolls from the manual ones, taking into account that a real user rarely scrolls immediately after typing.

We should test this on a release build, preferably on a physical device, as in my experience it makes a difference. Compiling a release build is very slow, so you can create a spin-off branch that adds a debug UI component for choosing the wait value. Visually, it can be placed anywhere. Then we can experiment with this manually.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yep. So, are we good with the 500ms? I will push the update if we have no other concerns

Copy link
Contributor

Choose a reason for hiding this comment

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

I think we are, I'm not against any particular number, as I mentioned. I will test it and figure out if I can see any UX issues with it. Because we are in agreement that the only thing this number does is draw the boundary between true/false positives (/negatives) on debug/release modes, right?

Also, the constant itself isn't the only open topic here. We also have the issue of impureness in useMemo and the wording of the comment we leave for the others.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Because we are in agreement that the only thing this number does is draw the boundary between true/false positives (/negatives) on debug/release modes, right?

yes

We also have the issue of impureness in useMemo and the wording of the comment we leave for the others.

I will address this along with this.

I will probably push the update tomorrow. (it's midnight)

Copy link
Contributor

Choose a reason for hiding this comment

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

Sure, I didn't mean to rush

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Pushed the update, only comment left.

return;
}
suggestionsRef.current.updateShouldShowSuggestionMenuToFalse(false);
}, [suggestionsRef]);

const debouncedHideSuggestionMenu = useMemo(() => _.debounce(hideSuggestionMenu, 200, true), [hideSuggestionMenu]);
Copy link
Contributor

Choose a reason for hiding this comment

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

We definitely need to explain ourselves out of this 200, as in Expensify we're (rightfully) skeptical against timeout-based solutions. We need to comment why do this and why 200 ms.

src/hooks/useDebounce.js Outdated Show resolved Hide resolved
src/hooks/useDebounce.js Outdated Show resolved Hide resolved
src/hooks/useDebounce.js Outdated Show resolved Hide resolved
return debouncedFn.cancel;
}, [func, wait, options]);

return debouncedFnRef.current;
Copy link
Contributor

@cubuspl42 cubuspl42 Sep 20, 2023

Choose a reason for hiding this comment

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

Actually, maybe let's wrap this into a lambda that calls debouncedFnRef.current only if it's not undefined? I think the case when it would be undefined are always an error, as we don't expect the returned function to be called inside a render function directly, but maybe dropping a call in a corner case is better than a crash?...

Copy link
Contributor Author

@bernhardoj bernhardoj Sep 20, 2023

Choose a reason for hiding this comment

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

I actually prefer the opposite so we can catch the error/crash earlier, but I'm okay with the suggestion. Updated.

Copy link
Contributor

Choose a reason for hiding this comment

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

I know what you mean. Perfectly, it would be great to combine both things, i.e. a safe handling of a corner case + an analytics report of an error. But we don't have such conventions in Expensify.

If you disagree with a suggestion, you can always say so before applying the change. Sometimes C+s will push for a change, sometimes not.

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 okay, I will say it if it is something that I strongly disagree 😄.

* @param {Boolean} options.trailing Specify invoking on the trailing edge of the timeout.
* @returns Returns the new debounced function.
*/
export default function useDebounce(func, wait, options) {
Copy link
Contributor

Choose a reason for hiding this comment

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

I ask for a review of this new code pattern

Copy link
Contributor

Choose a reason for hiding this comment

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

👍 to useDebounce but I'd maybe include some notes about passing a stable function reference to it in order for it to work as expected.

I would start with a comment and a few examples using useCallback so people will copy examples with stable references 🙂

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

Choose a reason for hiding this comment

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

I believe that the examples don't have to be in the JSDoc, maybe we can start by giving a good example in our PR?

We can just explicitly document that the debouncing operator resets its internal state when func changes, so it's recommended to provide stable function references to achieve predictable/expected results.

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 the comment.

maybe we can start by giving a good example in our PR?

Yeah, I think the use of useCallback in the composer code as the example is enough.

@cubuspl42
Copy link
Contributor

I think we're looking good, I'll start completing the checklist.

@cubuspl42
Copy link
Contributor

Please merge main

@bernhardoj
Copy link
Contributor Author

Done

@cubuspl42
Copy link
Contributor

@bernhardoj

Scrolling doesn't close the suggestion list for me on the feature branch... Do you reproduce this behavior?

The code looked good for me on paper, but it doesn't seem to achieve its goal (unless there is a flaw in my testing)

prod.mp4
feature-branch.mp4

@bernhardoj
Copy link
Contributor Author

Hmm, that's weird. Last time I tested it works fine. Let me check it!

@cubuspl42
Copy link
Contributor

@bernhardoj Also, update the test steps to include this case

@bernhardoj
Copy link
Contributor Author

Somehow the lodash debounce is not fired if we pass undefined trailing options. I tried defaulting it to true to make it work.

update the test steps to include this case

I actually included this case in the recording, but I don't know what to write for the test step 😭.

  1. Keep pressing Shift+Enter (to add a new line) until you reach the composer maximum line
  2. Type anything to fill the current line
  3. Press space once and type @ (make sure @ is wrapped to the next line)
  4. Verify a suggestion menu shows

Do you think the wording is good enough?

@cubuspl42
Copy link
Contributor

@bernhardoj It's okey, I guess. Could also be:

  1. Ensure that the composer has many enough lines so it's scrollable (they can be empty)
  2. Add enough text to reach the end of line with your cursor (the line should end with a space)
  3. Input "@", which should appear on the next line
  4. Verify that the suggestion list shows up

...but also...

  1. Ensure that the composer has many enough lines so it's scrollable (they can be empty)
  2. Make the suggestion menu show up by inputting "@"
  3. After at least a second, scroll the composer manually
  4. Verify that the suggestion menu disappears
    • If you scroll right after typing (< 1 s), it's acceptable for the suggestion menu not to disappear after this interaction

@bernhardoj
Copy link
Contributor Author

bernhardoj commented Sep 21, 2023

Great, thanks! Updated with a little bit modification.

@cubuspl42
Copy link
Contributor

@bernhardoj "After at least a second, " can be removed in my opinion. I was too defensive suggesting that. I have big trouble reproducing a case when the manual scroll is considered layout-triggered, so I think we can just drop that part.

@@ -324,8 +346,8 @@ function ComposerWithSuggestions({
[suggestionsRef],
);

const updateShouldShowSuggestionMenuToFalse = useCallback(() => {
if (!suggestionsRef.current) {
const hideSuggestionMenu = useCallback(() => {
Copy link
Contributor

Choose a reason for hiding this comment

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

I really like this name change, it's like changing giveCatLikeHighPitchedSound to meow

Copy link
Contributor Author

Choose a reason for hiding this comment

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

😸

@cubuspl42
Copy link
Contributor

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 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 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
fix-suggestions-ios-web.mp4
Mobile Web - Chrome
fix-suggestions-android-web-compressed.mp4
Mobile Web - Safari
fix-suggestions-ios-web.mp4
Desktop
iOS
fix-suggestions-ios.mp4
Android
fix-suggestions-android-compressed.mp4

@melvin-bot melvin-bot bot requested a review from Gonals September 22, 2023 09:23
@bernhardoj
Copy link
Contributor Author

"After at least a second, " can be removed in my opinion

Removed

Should we remove this too?

If you scroll right after typing (< 1 s), it's acceptable for the suggestion menu not to disappear after this interaction

@cubuspl42
Copy link
Contributor

"After at least a second, " can be removed in my opinion

Removed

Should we remove this too?

If you scroll right after typing (< 1 s), it's acceptable for the suggestion menu not to disappear after this interaction

I don't have a strong opinion here.

@Gonals Gonals merged commit b9a2f62 into Expensify:main Sep 26, 2023
1 check 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/Gonals in version: 1.3.75-0 🚀

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

@OSBotify
Copy link
Contributor

OSBotify commented Oct 2, 2023

🚀 Deployed to production by https://github.com/mountiny in version: 1.3.75-12 🚀

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

@OSBotify
Copy link
Contributor

OSBotify commented Oct 2, 2023

🚀 Deployed to staging by https://github.com/Gonals in version: 1.3.76-0 🚀

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

@OSBotify
Copy link
Contributor

OSBotify commented Oct 3, 2023

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

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