1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

Merge pull request #152 from oceanprotocol/fix/account-address

fix account address display in Firefox
This commit is contained in:
Matthias Kretschmann 2019-06-06 11:18:53 +02:00 committed by GitHub
commit 56f7dec9f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ const Account = ({ account }: { account: string }) => {
return account && blockies ? (
<div className={styles.account}>
<img className={styles.blockies} src={blockies} alt="Blockies" />
<Dotdotdot clamp={1}>{account}</Dotdotdot>
<Dotdotdot clamp={2}>{account}</Dotdotdot>
</div>
) : (
<em>No account selected</em>