Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
change endpoint in index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tmctl committed Nov 20, 2023
1 parent 6a957f5 commit 8a50d06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/examples/typescript/dapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>dApp</title>
<link rel="stylesheet" href="/main.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<main>
Expand Down
4 changes: 2 additions & 2 deletions src/examples/typescript/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<body>
<main>
<!-- need to be on different host / port combinations https://github.com/WalletConnect/walletconnect-monorepo/issues/2975 -->
<iframe src="/dApp/index.html"></iframe>
<iframe src="http://localhost:8081/wallet/index.html"></iframe>
<iframe src="dapp/index.html"></iframe>
<iframe src="wallet/index.html"></iframe>
</main>
<script>
// more easily see which iframe is focused
Expand Down
2 changes: 1 addition & 1 deletion src/examples/typescript/wallet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wallet</title>
<link rel="stylesheet" href="/main.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<main>
Expand Down

0 comments on commit 8a50d06

Please sign in to comment.