Skip to content

Commit

Permalink
Merge pull request #1048 from multiversx/development
Browse files Browse the repository at this point in the history
Updated AddressRow data-testids (#1047)
  • Loading branch information
razvantomegea authored Feb 13, 2024
2 parents 0b3325e + f2a5849 commit 7762214
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [[v2.28.7]](https://github.com/multiversx/mx-sdk-dapp/pull/1048)] - 2024-02-13
- [Updated AddressRow data-testids](https://github.com/multiversx/mx-sdk-dapp/pull/1047)

## [[v2.28.6]](https://github.com/multiversx/mx-sdk-dapp/pull/1044)] - 2024-02-08
- [Added option to access URL search param from application load time in `useParseSignedTransactions`](https://github.com/multiversx/mx-sdk-dapp/pull/1042)
- [Fixed wallet connect breaks login with other providers](https://github.com/multiversx/mx-sdk-dapp/pull/1043)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@multiversx/sdk-dapp",
"version": "2.28.6",
"version": "2.28.7",
"description": "A library to hold the main logic for a dapp on the MultiversX blockchain",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
Expand Down
4 changes: 2 additions & 2 deletions src/UI/ledger/LedgerLoginContainer/AddressRow/AddressRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ const AddressRowComponent = ({
>
<input
type='radio'
id={`check_${index}`}
id={`check_${address}`}
disabled={disabled}
data-testid={`check_${index}`}
data-testid={`check_${address}`}
onChange={handleChange}
role='button'
checked={selectedAddress === address}
Expand Down

0 comments on commit 7762214

Please sign in to comment.