From 3489f290898408ce7ce81e5a199e61c374c76e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Let=C3=ADcia=20Camara?= Date: Thu, 24 Jan 2019 00:18:31 -0200 Subject: [PATCH] Update webservice url --- src/components/pages/MerchantsPage.js | 4 ---- src/utils/feathers.js | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/pages/MerchantsPage.js b/src/components/pages/MerchantsPage.js index 3984666..2e8015b 100644 --- a/src/components/pages/MerchantsPage.js +++ b/src/components/pages/MerchantsPage.js @@ -307,10 +307,6 @@ class MerchantsPage extends Component { }); result.data.map(merchant => { - const infoDescription =
-
Address: {merchant.address}
- {(merchant.phone) && (
Phone: {merchant.phone}
)} -
; if(merchant.telegram){ merchant.telegram_original = merchant.telegram; merchant.telegram = { diff --git a/src/utils/feathers.js b/src/utils/feathers.js index 73ef7f1..2e8d259 100644 --- a/src/utils/feathers.js +++ b/src/utils/feathers.js @@ -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