Sven Czarnian 2 лет назад
Родитель
Сommit
1269cb9f6b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/services/auth.ts

+ 1 - 1
src/services/auth.ts

@@ -72,7 +72,7 @@ export class Auth {
     if (!token) return BackendReturnStatus.Unauthorized;
 
     return axios
-      .patch<void>(`${Configuration.resourceServer}/auth/refreshRadarScopeKey`, {
+      .patch<void>(`${Configuration.resourceServer}/auth/refreshRadarScopeKey`, {}, {
         headers: {
           Authorization: `Bearer ${token}`,
         },