Browse Source

fix: pipelines not loading

Timothy Jaeryang Baek 4 months ago
parent
commit
3a35f9ae7c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/apis/index.ts

+ 1 - 1
src/lib/apis/index.ts

@@ -682,7 +682,7 @@ export const getPipelines = async (token: string, urlIdx?: string) => {
 		searchParams.append('urlIdx', urlIdx);
 	}
 
-	const res = await fetch(`${WEBUI_BASE_URL}/api/v1/pipelines?${searchParams.toString()}`, {
+	const res = await fetch(`${WEBUI_BASE_URL}/api/v1/pipelines/?${searchParams.toString()}`, {
 		method: 'GET',
 		headers: {
 			Accept: 'application/json',