diff --git a/apps/platform/src/pages/StudyPage/StudyPage.tsx b/apps/platform/src/pages/StudyPage/StudyPage.tsx
index f75073977..859fb86a1 100644
--- a/apps/platform/src/pages/StudyPage/StudyPage.tsx
+++ b/apps/platform/src/pages/StudyPage/StudyPage.tsx
@@ -1,16 +1,16 @@
+import { ReactElement } from "react";
import { useQuery } from "@apollo/client";
import { BasePage, ScrollToTop } from "ui";
import { Box, Tabs, Tab } from "@mui/material";
-import { useLocation, useParams, Routes, Route, useMatch, Link, Navigate } from "react-router-dom";
+import { useLocation, useParams, Link } from "react-router-dom";
import Header from "./Header";
import NotFoundPage from "../NotFoundPage";
import STUDY_PAGE_QUERY from "./StudyPage.gql";
import Profile from "./Profile";
-function StudyPage() {
+function StudyPage(): ReactElement {
const location = useLocation();
const { studyId } = useParams() as { studyId: string };
- const { path } = useMatch();
const { loading, data } = useQuery(STUDY_PAGE_QUERY, {
variables: { studyId },
@@ -29,45 +29,34 @@ function StudyPage() {
description={`Annotation information for ${study?.id}`}
location={location}
>
-
-
+ <>
+
+
- (
-
-
- Profile}
- value={`/study/${studyId}`}
- component={Link}
- to={`/study/${studyId}`}
- />
-
-
- )}
- />
-
-
-
-
-
-
-
-
-
+
+
+ Profile}
+ value={`/study/${studyId}`}
+ component={Link}
+ to={`/study/${studyId}`}
+ />
+
+
+
+ >
);
}