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