(fix) ui - fix method not alowed error

This commit is contained in:
ishaan-jaff 2024-02-17 13:57:42 -08:00
parent 580034cf76
commit bca8a15574

View file

@ -239,7 +239,7 @@ export const userSpendLogsCall = async (
export const keyInfoCall = async (accessToken: String, keys: String[]) => {
try {
let url = proxyBaseUrl ? `${proxyBaseUrl}/v2/key/info` : `/key/info`;
let url = proxyBaseUrl ? `${proxyBaseUrl}/v2/key/info` : `/v2/key/info`;
const response = await fetch(url, {
method: "POST",