Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Jan 8, 2025
1 parent d0e606d commit f2ae076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/beacon-dapp/src/dapp-client/DAppClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit f2ae076

Please sign in to comment.