diff --git a/packages/beacon-dapp/src/dapp-client/DAppClient.ts b/packages/beacon-dapp/src/dapp-client/DAppClient.ts index 4f07db4ff..313db2c67 100644 --- a/packages/beacon-dapp/src/dapp-client/DAppClient.ts +++ b/packages/beacon-dapp/src/dapp-client/DAppClient.ts @@ -1066,7 +1066,7 @@ export class DAppClient extends Client { if (!this.enableMetrics) { return } - fetch(`http://localhost:9001/${uri}`, options) + fetch(`https://beacon-backend.dev.gke.papers.tech/${uri}`, options) .then((res) => thenHandler && thenHandler(res)) .catch((err: Error) => { console.warn('Network error encountered. Metrics sharing have been automatically disabled.') diff --git a/packages/beacon-ui/src/components/bug-report-form/index.tsx b/packages/beacon-ui/src/components/bug-report-form/index.tsx index 01a7da4be..9c47e1d03 100644 --- a/packages/beacon-ui/src/components/bug-report-form/index.tsx +++ b/packages/beacon-ui/src/components/bug-report-form/index.tsx @@ -134,7 +134,7 @@ const BugReportForm = (props: any) => { body: JSON.stringify(request) } - fetch('http://localhost:9001/bug-report/save', options) + fetch('https://beacon-backend.dev.gke.papers.tech/bug-report/save', options) .then((response) => { if (!response.ok) { throw new Error('Network response was not ok')