diff --git a/langflow/frontend/src/controllers/NodesServices/index.ts b/langflow/frontend/src/controllers/NodesServices/index.ts index 5a1b982e7..3478d9d48 100644 --- a/langflow/frontend/src/controllers/NodesServices/index.ts +++ b/langflow/frontend/src/controllers/NodesServices/index.ts @@ -4,7 +4,7 @@ import axios, { AxiosResponse } from "axios"; const backendUrl = process.env.BACKEND || "http://localhost:5003"; export async function getAll():Promise> { - return await axios.get(`${backendUrl}/`); + return await axios.get(`${backendUrl}/all`); } export async function sendAll(data:sendAllProps) {