From 4d7dae91c9befbc91285376fed73571ec2f18601 Mon Sep 17 00:00:00 2001 From: Ben Fletcher Date: Fri, 30 Jun 2023 16:01:14 +0100 Subject: [PATCH] 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 82c709d5d39..7559d02ebfd 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", },