-
Notifications
You must be signed in to change notification settings - Fork 448
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: account name checks FE-724 #1570
Conversation
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.
it's missing to add a changeset @nelitow
|
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.
this broke the test that validates connected screen flow.
the comparison before was done with includes
and now it's done with ===
what was the reason for changing this? the issue was to fix the lowerCase only
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated. # Releases ## @fuels/[email protected] ## [email protected] ### Minor Changes - [#1572](#1572) [`97185130`](9718513) Thanks [@helciofranco](https://github.com/helciofranco)! - Reduce transaction history loading time by optimizing the complexity of the page info query. - [#1571](#1571) [`112e002c`](112e002) Thanks [@helciofranco](https://github.com/helciofranco)! - Format tiny, large, and regular amounts, applying 6 decimal places of precision. ### Patch Changes - [#1570](#1570) [`8e42400c`](8e42400) Thanks [@nelitow](https://github.com/nelitow)! - Improve account name colision verification - Updated dependencies \[]: - @fuel-wallet/[email protected] ## @fuel-wallet/[email protected] ### Minor Changes - [#1571](#1571) [`112e002c`](112e002) Thanks [@helciofranco](https://github.com/helciofranco)! - Format tiny, large, and regular amounts, applying 6 decimal places of precision. ## @fuel-wallet/[email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Fixes:
Considerations:
filterByName
function sound like it could be used for a search filter, in which it should be case insensitive, but that is not the case at the moment, it is only used for account name editing and creation.UPDATE b611c8b
Addressing an issue that arose as the function was used for account searching inside the wallet by another method, so now the account addition and editing don't rely on the same function. That was caught by e2e tests.