1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Fix typo in edition api url

This commit is contained in:
Brett Sun 2015-10-22 14:14:06 +02:00
parent ba777781b7
commit 7ba7e26d5b
2 changed files with 1 additions and 2 deletions

View File

@ -137,7 +137,6 @@ let PieceListBulkModal = React.createClass({
} else {
return null;
}
}
});

View File

@ -21,7 +21,7 @@ function getWalletApiUrls(subdomain) {
}
else if (subdomain === 'lumenus'){
return {
'editions': walletConstants.walletApiEndpoint + subdomain + 'editions/',
'editions': walletConstants.walletApiEndpoint + subdomain + '/editions/',
'pieces_list': walletConstants.walletApiEndpoint + subdomain + '/pieces/',
'user': walletConstants.walletApiEndpoint + subdomain + '/users/'
};