From 4861af0f3206f965ad2f7a4eddf2ebec2df149f8 Mon Sep 17 00:00:00 2001 From: Ben Fletcher Date: Mon, 3 Jul 2023 23:52:40 +0100 Subject: [PATCH] fix: Broken non-root path with projects-list.json (#3665) ensure correct precedence with the two operators Signed-off-by: Ben Fletcher --- ui/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/index.tsx b/ui/src/index.tsx index 82c709d5d3..7559d02ebf 100644 --- a/ui/src/index.tsx +++ b/ui/src/index.tsx @@ -97,7 +97,7 @@ ReactDOM.render( reactQueryClient={queryClient} feastUIConfigs={{ tabsRegistry: tabsRegistry, - projectListPromise: fetch(process.env.PUBLIC_URL || "" + "/projects-list.json", { + projectListPromise: fetch((process.env.PUBLIC_URL || "") + "/projects-list.json", { headers: { "Content-Type": "application/json", },