Skip to content

Commit

Permalink
Remove legacy links
Browse files Browse the repository at this point in the history
  • Loading branch information
gades committed Jul 17, 2019
1 parent d8a1413 commit ab63bc9
Show file tree
Hide file tree
Showing 4 changed files with 4,113 additions and 3,932 deletions.
11 changes: 4 additions & 7 deletions app/components/Layout/HeaderDropdown.jsx
Expand Up @@ -207,8 +207,8 @@ export default class DropDownMenu extends React.Component {
disabled: !enableDepositWithdraw,
mainText: "modal.deposit.submit",
mainCallback: this.props.showDeposit,
subText: "header.deposit_legacy",
subURL: "/deposit-withdraw"
subText: null,
subURL: null
},
{
icon: {
Expand All @@ -218,8 +218,8 @@ export default class DropDownMenu extends React.Component {
disabled: !enableDepositWithdraw,
mainText: "modal.withdraw.submit",
mainCallback: this.props.showWithdraw,
subText: "header.withdraw_legacy",
subURL: "/deposit-withdraw"
subText: null,
subURL: null
}
].map(
(
Expand Down Expand Up @@ -296,7 +296,6 @@ export default class DropDownMenu extends React.Component {
</div>
</li>


<li
className={cnames(
{
Expand All @@ -316,7 +315,6 @@ export default class DropDownMenu extends React.Component {
</div>
</li>


<li
className={cnames({
active: active.indexOf("/signedmessages") !== -1,
Expand All @@ -339,7 +337,6 @@ export default class DropDownMenu extends React.Component {
</div>
</li>


<li
className={cnames({
active: active.indexOf("/whitelist") !== -1,
Expand Down
2 changes: 1 addition & 1 deletion app/components/Showcases/Barter.jsx
Expand Up @@ -651,7 +651,7 @@ export default class Barter extends Component {

handleMemoOpen = (type, index) => e => {
const memos = Object.assign({}, this.state.memo);
memos[type][index] = {message: "", shown: true};
memos[type][index] = {shown: true};
this.setState({memo: memos});
};

Expand Down

0 comments on commit ab63bc9

Please sign in to comment.