Skip to content

Commit

Permalink
Display internet protocol on the domain in SIWE screen (#18052)
Browse files Browse the repository at this point in the history
  • Loading branch information
VSaric authored Mar 13, 2023
1 parent 2967453 commit 14b1555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/e2e/tests/signin-with-ethereum.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('Sign in with ethereum', function () {
);
const origin = await driver.findElement('.site-origin');
assert.equal(await title.getText(), 'Sign-in request');
assert.equal(await origin.getText(), '127.0.0.1:8080');
assert.equal(await origin.getText(), 'http://127.0.0.1:8080');

const displayedMessageTitle = await driver.findElement(
'.permissions-connect-header__subtitle',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function SignatureRequestSIWE({
<div className="signature-request-siwe">
<Header
fromAccount={fromAccount}
domain={parsedMessage.domain}
domain={origin}
isSIWEDomainValid={isSIWEDomainValid}
subjectMetadata={targetSubjectMetadata}
/>
Expand Down

0 comments on commit 14b1555

Please sign in to comment.