Skip to content

Commit

Permalink
fix: properly forward tokens to REPL
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Nov 12, 2020
1 parent e13a9d9 commit 647b999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cosmic-swingset/lib/ag-solo/html/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ if (
throw Error(`status ${resp.status}`);
}
walletFrame.style.display = 'block';
walletFrame.src = `wallet/${accessTokenHash}`;
walletFrame.src = `wallet/#${accessTokenParams.slice(1)}`;
})
.catch(e => {
console.log('Cannot fetch wallet/', e);
Expand Down

0 comments on commit 647b999

Please sign in to comment.