From fbdfd72e4d69681d66af6af88ece60cafaa0c49e Mon Sep 17 00:00:00 2001 From: Georgy Karataev Date: Thu, 13 Apr 2023 14:18:20 +0200 Subject: [PATCH] Use v2 for upgrade-risks-prediction --- src/Services/SmartProxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/SmartProxy.js b/src/Services/SmartProxy.js index b6c4bcaa..e41957b4 100644 --- a/src/Services/SmartProxy.js +++ b/src/Services/SmartProxy.js @@ -38,7 +38,7 @@ export const SmartProxyApi = createApi({ transformResponse: (response) => response?.cluster, }), getUpgradeRisks: builder.query({ - query: ({ id }) => `v1/cluster/${id}/upgrade-risks-prediction`, + query: ({ id }) => `v2/cluster/${id}/upgrade-risks-prediction`, }), }), });