From 4d29d5ed3a93bb4a4520a805a9d2f8da13449dd5 Mon Sep 17 00:00:00 2001 From: gouravmpk Date: Wed, 7 Feb 2024 23:41:07 +0530 Subject: [PATCH] feat: minor fix --- src/components/App/SideBar/Transcript/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/App/SideBar/Transcript/index.tsx b/src/components/App/SideBar/Transcript/index.tsx index de6d99d71..de49e9296 100644 --- a/src/components/App/SideBar/Transcript/index.tsx +++ b/src/components/App/SideBar/Transcript/index.tsx @@ -40,7 +40,7 @@ export const Transcript = ({ stateless, node }: TranscriptProps) => { const loadFullTranscript = async (refId: string) => { try { - const response = await fetch(`https://${url}/node/text/${refId}`) // can you please change "https://knowledge-graph.sphinx.chat" to host var + const response = await fetch(`${url}/node/text/${refId}`) // can you please change "https://knowledge-graph.sphinx.chat" to host var if (!response.ok) { throw new Error('Network response was not ok')