From 3effba2dbdee5539d75c463f1ec0f7c3db3caec7 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 14 Jul 2023 09:16:15 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(API/index.ts):=20update=20ex?= =?UTF-8?q?amples=20API=20URL=20to=20use=20the=20'main'=20branch=20instead?= =?UTF-8?q?=20of=20'fix=5Fexamples'=20branch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/controllers/API/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/controllers/API/index.ts b/src/frontend/src/controllers/API/index.ts index 6970ac8bf..7668fea0a 100644 --- a/src/frontend/src/controllers/API/index.ts +++ b/src/frontend/src/controllers/API/index.ts @@ -76,7 +76,7 @@ export async function postValidatePrompt( */ export async function getExamples(): Promise { const url = - "https://api.github.com/repos/logspace-ai/langflow_examples/contents/examples?ref=fix_examples"; + "https://api.github.com/repos/logspace-ai/langflow_examples/contents/examples?ref=main"; const response = await axios.get(url); const jsonFiles = response.data.filter((file: any) => {