Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
alextsaihi committed May 28, 2024
1 parent 0f28a6d commit 233eb0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.connect
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
REACT_APP_DEPLOYMENT_ENV=Development
REACT_APP_TESTBED_API_BASE_URL=https://dev-testbed.ga4gh.org:4500/
REACT_APP_PORT=
REACT_APP_PORT=3000
2 changes: 1 addition & 1 deletion src/lib/components/pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Home = props => {
//useEffect(() => simpleApiCall(`${baseUrl}:${basePort}/organizations`, setOrganizations, setErrOrganizations), []);
//useEffect(() => simpleApiCall(`${baseUrl}:${basePort}/platforms`, setPlatforms, setErrPlatforms), []);
//useEffect(() => simpleApiCall(`${baseUrl}:${basePort}/reports`, setReports, setErrReports), []);
useEffect(() => simpleApiCall(`${baseUrl}/reports`, setReports, setErrReports), []);
useEffect(() => simpleApiCall(`${baseUrl}:${basePort}/reports`, setReports, setErrReports), []);

return (
<PageContainer>
Expand Down

0 comments on commit 233eb0d

Please sign in to comment.