From c6405f68ff18fb771368beb8c527b0c3b679127c Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Wed, 8 Nov 2023 08:48:47 -0600 Subject: [PATCH] feat(teamProjectApiUpdate): updated data passed to HomeTable component to support change in BE response --- src/Analysis/GWASResults/Views/Home/Home.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Analysis/GWASResults/Views/Home/Home.jsx b/src/Analysis/GWASResults/Views/Home/Home.jsx index b0f6fe5cbb..77f984e92a 100644 --- a/src/Analysis/GWASResults/Views/Home/Home.jsx +++ b/src/Analysis/GWASResults/Views/Home/Home.jsx @@ -33,10 +33,11 @@ const Home = () => { if (status === 'error') { return ; } + console.log("data",data) return ( - + ); };