(fix) ui - fix method not alowed error

This commit is contained in:
ishaan-jaff 2024-02-17 13:57:42 -08:00
parent ab8df9c284
commit 46b11324dd

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",