Skip to content

Commit

Permalink
feat: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravmpk committed Feb 7, 2024
1 parent 72ada5e commit 4d29d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App/SideBar/Transcript/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 4d29d5e

Please sign in to comment.