Skip to content

Commit

Permalink
Fix wrong conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
reyraa committed Jan 7, 2022
1 parent 1039d1e commit d2b34ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Tab = ({
onSaveNameAccounts, onSelectAccount,
}) => (
<div name={name} id={id} className={`${styles.deviceContainer} ${`tab-${id}`} hw-container`}>
{accountsList.map((account, index) => (
{accountsList.map((data) => (
<AccountCard
key={`hw-account-tabId-${data.index}`}
account={data.account}
Expand Down

0 comments on commit d2b34ef

Please sign in to comment.