-
Notifications
You must be signed in to change notification settings - Fork 28
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: wrong error after adding folder [WPB-15478] #3820
Conversation
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small typo, nothing critical
) | ||
if (!folderNameState.loading) { | ||
folderNameState = folderNameState.copy( | ||
buttonEnabled = text.trim().isNotEmpty() && !nameExist && text.length <= NAME_MAX_COUNT, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
buttonEnabled = text.trim().isNotEmpty() && !nameExist && text.length <= NAME_MAX_COUNT, | |
buttonEnabled = text.trim().isNotEmpty() && !nameExists && text.length <= NAME_MAX_COUNT, |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #3820 +/- ##
===========================================
+ Coverage 45.78% 45.79% +0.01%
===========================================
Files 486 486
Lines 16638 16643 +5
Branches 2797 2798 +1
===========================================
+ Hits 7617 7622 +5
Misses 8239 8239
Partials 782 782
Continue to review full report in Codecov by Sentry.
|
Built wire-android-staging-compat-pr-3820.apk is available for download |
Built wire-android-dev-debug-pr-3820.apk is available for download |
PR Submission Checklist for internal contributors
The PR Title
SQPIT-764
The PR Description
What's new in this PR?
Issues
After successfully added folder there was short period of showing error that folder name already exist. It's caused because current folder list is propagating new folder before screen closes
Solutions
Disable updating folders state by checking progress state