Skip to content

Commit

Permalink
Fix new window link
Browse files Browse the repository at this point in the history
  • Loading branch information
Spl3en committed Mar 16, 2020
1 parent f4de177 commit 36fa83a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AccountOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const AccountOrders = ({ wallet }) => {
})

const onClickView = (swap) => {
window.open("/#/swap/" + swap['id'], '_blank')
window.open("#/swap/" + swap['id'], '_blank')
}

const onClickWithdraw = (swap) => {
Expand Down
2 changes: 1 addition & 1 deletion src/ListSwap.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const ListSwap = ({ wallet }) => {
}

const onClickView = (swap) => {
window.open("/#/swap/" + swap['id'], '_blank')
window.open("#/swap/" + swap['id'], '_blank')
}

const filterOutSameContract = (list) => {
Expand Down

0 comments on commit 36fa83a

Please sign in to comment.