Update webservice url
This commit is contained in:
parent
19d0223959
commit
3489f29089
2 changed files with 1 additions and 5 deletions
|
@ -307,10 +307,6 @@ class MerchantsPage extends Component {
|
|||
});
|
||||
|
||||
result.data.map(merchant => {
|
||||
const infoDescription = <div>
|
||||
<div><b>Address</b>: {merchant.address}</div>
|
||||
{(merchant.phone) && (<div><b>Phone</b>: {merchant.phone}</div>)}
|
||||
</div>;
|
||||
if(merchant.telegram){
|
||||
merchant.telegram_original = merchant.telegram;
|
||||
merchant.telegram = {
|
||||
|
|
|
@ -3,7 +3,7 @@ import feathers from '@feathersjs/client';
|
|||
const app = feathers();
|
||||
// Change to your production ambassador web service
|
||||
//const restClient = feathers.rest('http://localhost:3030');
|
||||
const restClient = feathers.rest('https://intranet.palmpay.io');
|
||||
const restClient = feathers.rest('https://websvc.palmpay.io');
|
||||
|
||||
// Configure an Fetch AJAX library with that client. For fetch details see https://facebook.github.io/react-native/docs/network.html
|
||||
// For rest details see https://docs.feathersjs.com/api/client/rest.html
|
||||
|
|
Loading…
Reference in a new issue