Skip to content

Commit

Permalink
fix poloniex trade path
Browse files Browse the repository at this point in the history
  • Loading branch information
ety001 committed Jul 18, 2023
1 parent d174c98 commit 439e9e5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/app/components/modules/UserWallet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ class UserWallet extends React.Component {
// const name = this.props.currentUser.get('username');
const new_window = window.open();
new_window.opener = null;
new_window.location = 'https://poloniex.com/exchange#trx_steem';
new_window.location =
'https://poloniex.com/trade/STEEM_TRX/?type=spot';
};
this.onShowSteemTradeTop = e => {
if (e && e.preventDefault) e.preventDefault();
Expand All @@ -69,7 +70,8 @@ class UserWallet extends React.Component {
// const name = this.props.currentUser.get('username');
const new_window = window.open();
new_window.opener = null;
new_window.location = 'https://poloniex.com/exchange#trx_steem';
new_window.location =
'https://poloniex.com/trade/STEEM_TRX/?type=spot';
};
this.onShowTrxTrade = e => {
if (e && e.preventDefault) e.preventDefault();
Expand Down

0 comments on commit 439e9e5

Please sign in to comment.