This commit is contained in:
Samandar Turgunboyev
2026-02-26 13:20:30 +05:00
parent 5e60ac8dd4
commit e7f0731353
2 changed files with 6 additions and 7 deletions

View File

@@ -10,7 +10,9 @@ export const partner_api = {
},
async getAbout(): Promise<AxiosResponse<AboutData>> {
const res = httpClient.get(API_URLS.About);
const res = httpClient.get(API_URLS.About, {
headers: { 'Cache-Control': 'no-cache' },
});
return res;
},
};