Skip to content

Commit

Permalink
Fix baseURL for dev wallet config request (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink authored Jun 21, 2023
1 parent f2b7d30 commit 74fdd9a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contexts/ConfigContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function getConfig(): Promise<RuntimeConfig> {
return replaceAccessUrlBaseUrl(defaultConfig)
}

const result = await fetch("http://localhost:8701/api/")
const result = await fetch(`${getBaseUrl()}/api/`)
.then(res => res.json())
.then(remoteConfig => {
return Object.assign(defaultConfig, remoteConfig)
Expand Down
Binary file modified go/wallet/bundle.zip
Binary file not shown.

0 comments on commit 74fdd9a

Please sign in to comment.