Skip to content

Commit

Permalink
feat(teamProjectApiUpdate): updated data passed to HomeTable componen…
Browse files Browse the repository at this point in the history
…t to support change in BE response
  • Loading branch information
jarvisraymond-uchicago committed Nov 8, 2023
1 parent 6590202 commit c6405f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Analysis/GWASResults/Views/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ const Home = () => {
if (status === 'error') {
return <LoadingErrorMessage />;
}
console.log("data",data)
return (
<React.Fragment>
<ManageColumns />
<HomeTable data={data} />
<HomeTable data={data[0]} />
</React.Fragment>
);
};
Expand Down

0 comments on commit c6405f6

Please sign in to comment.