Skip to content

Commit d174c98

Browse files
committed
fix poloniex trade path
1 parent aaec153 commit d174c98

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/app/components/modules/Modals.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ class Modals extends React.Component {
165165
if (e && e.preventDefault) e.preventDefault();
166166
const new_window = window.open();
167167
new_window.opener = null;
168-
new_window.location = 'https://poloniex.com/exchange#trx_steem';
168+
new_window.location =
169+
'https://poloniex.com/trade/STEEM_TRX/?type=spot';
169170
};
170171

171172
return (

src/app/components/modules/SidePanel/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const SidePanel = ({
131131
{
132132
value: 'poloniex',
133133
label: 'Poloniex',
134-
link: 'https://poloniex.com/exchange#trx_steem',
134+
link: 'https://poloniex.com/trade/STEEM_TRX/?type=spot',
135135
},
136136
],
137137
external: [

src/app/components/modules/UserWallet.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ class UserWallet extends React.Component {
8080
// const name = this.props.currentUser.get('username');
8181
const new_window = window.open();
8282
new_window.opener = null;
83-
new_window.location = 'https://poloniex.com/exchange#usdt_trx';
83+
new_window.location =
84+
'https://poloniex.com/trade/TRX_USDT/?type=spot';
8485
};
8586
this.onShowTronLink = e => {
8687
if (e && e.preventDefault) e.preventDefault();

0 commit comments

Comments
 (0)