-
Notifications
You must be signed in to change notification settings - Fork 393
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
Support for Wallet Test Framework #3737
Changes from all commits
6da0fd1
98ef67a
a05f250
07b2226
f46e1f2
67fefc8
1b9fdcf
2a29b36
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ import { useAreInternalSignersUnlocked } from "../../hooks/signing-hooks" | |
import SharedAvatar from "./SharedAvatar" | ||
|
||
type Props = { | ||
address: string | ||
shortenedAddress: string | ||
name: string | undefined | ||
avatarURL: string | undefined | ||
|
@@ -13,6 +14,7 @@ type Props = { | |
} | ||
|
||
export default function SharedCurrentAccountInformation({ | ||
address, | ||
shortenedAddress, | ||
name, | ||
avatarURL, | ||
|
@@ -23,7 +25,7 @@ export default function SharedCurrentAccountInformation({ | |
const icon = areInternalSignersUnlocked ? "unlock" : "lock" | ||
return ( | ||
<div className={classNames("account_info_wrap", { hover: showHoverStyle })}> | ||
<span className="account_info_label ellipsis"> | ||
<span title={address} className="account_info_label ellipsis"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Glorious, thank you for this one 💪 |
||
{name ?? shortenedAddress} | ||
</span> | ||
<SharedAvatar | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ export default function EIP191Info({ | |
<> | ||
<div className="message"> | ||
<div className="message-title">{t("message")}</div> | ||
<div className="light">{`${signingData}`}</div> | ||
<div id="message-content" className="light">{`${signingData}`}</div> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if this will cause issues here. Might be better to stay consistent with using either There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to just use |
||
</div> | ||
<div className="message"> | ||
<div className="signed">{t("signed")}</div> | ||
|
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.
Noticing this type is the same as the enrichment type that's being updated here, could reuse that. Just a note to self though 😁