Skip to content

Commit

Permalink
fix: fix ociBackend url
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Nov 14, 2024
1 parent 5d39c78 commit 932c452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/oci.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const logger = parentLogger.child({ module: 'OciService' });
async function getProfiles(address: string, chainId: number) {
try {
logger.debug(`${config.ociBackendURL}/oci/profiles/${chainId}/${address}`);
const response = await fetch(`${config.ociBackendURL}/api/v1/oci/profiles/${chainId}/${address}`, {
const response = await fetch(`${config.ociBackendURL}/oci/profiles/${chainId}/${address}`, {
method: 'GET',
headers: { 'Content-Type': 'application/json' },
});
Expand Down

0 comments on commit 932c452

Please sign in to comment.