Skip to content

Commit

Permalink
fix: Fix staking account selector button alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick1904 committed Feb 23, 2022
1 parent 1877942 commit a9bfe2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ const Root = styled.div`
width: 100%;
height: 100%;
position: absolute;
top: 0;
pointer-events: none;
z-index: 0;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
margin-right: 20px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const ActivitiesWrapper = () => {
<h2 className={classNames({'dots': activityLoader})}><Translate id='dashboard.activity' /></h2>
{transactions.map((transaction, i) => (
<ActivityBox
key={`${transaction.hash_with_index}-${transaction.kind}`}
key={`${transaction.hash_with_index}-${transaction.block_hash}-${transaction.kind}`}
transaction={transaction}
actionArgs={transaction.args}
actionKind={transaction.kind}
Expand Down

0 comments on commit a9bfe2e

Please sign in to comment.