From ee33398a965ff6cd28d8bfe5a8a6046dfe4103e9 Mon Sep 17 00:00:00 2001 From: gokhangunduz Date: Thu, 21 Dec 2023 10:15:23 +0300 Subject: [PATCH] feat(version): release 0.25.5 version --- package.json | 2 +- src/components/Connections/Connections.tsx | 10 +++++----- src/contexts/RobotContext.tsx | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 51bfdcf7..2e618fc6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "0.25.4", + "version": "0.25.6", "private": true, "scripts": { "dev": "react-scripts start", diff --git a/src/components/Connections/Connections.tsx b/src/components/Connections/Connections.tsx index e06d6ea0..b47b5576 100644 --- a/src/components/Connections/Connections.tsx +++ b/src/components/Connections/Connections.tsx @@ -6,7 +6,7 @@ import useRobot from "../../hooks/useRobot"; import { ReactElement, useEffect } from "react"; export default function Connections(): ReactElement { - const { responseRobot, isSettedCookie, connectionsReducer } = useRobot(); + const { responseRobot, connectionsReducer } = useRobot(); const { keycloak } = useKeycloak(); useEffect(() => { @@ -38,9 +38,9 @@ export default function Connections(): ReactElement { /> (null); @@ -319,7 +320,7 @@ export default ({ children }: any) => { useEffect(() => { try { if (isSettedCookie && isProduction) { - axios + axiosInterceptorOpenApi .get(responseRobot?.ideIngressEndpoint + "healthz") .then((response: AxiosResponse) => { console.log(response.data);