Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove team page #3

Merged
merged 2 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import Error401 from "./pages/Error401.jsx";
import GradioAnalytics from "./pages/GradioAnalytics.jsx";
import Settings from "./pages/Settings.jsx";
import TeamPage from "./pages/TeamPage.jsx";

Check warning on line 9 in frontend/src/App.jsx

View workflow job for this annotation

GitHub Actions / build

'TeamPage' is defined but never used

Check warning on line 9 in frontend/src/App.jsx

View workflow job for this annotation

GitHub Actions / lighthouse

'TeamPage' is defined but never used
import UserContributionPage from "./pages/UserContributionPage/index.jsx";

const LoginCallback = React.lazy(() =>
Expand Down Expand Up @@ -42,7 +42,6 @@
<Route path="/contributions" element={<UserContributionPage />} />
</Route>
<Route path="*" element={<Error404 />} />
<Route path="/team" element={<TeamPage />} />
<Route path="/analytics" element={<GradioAnalytics />} />
</Routes>
</Suspense>
Expand Down
12 changes: 0 additions & 12 deletions frontend/src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,6 @@ const Header = () => {
</Text>
</Box>
</Center>
<IconButton
id="aboutUsButton"
as="a"
href="/team"
fontWeight="bold"
borderRadius="5px"
border="1px solid"
variant="outline"
icon={<FaUsers />}
color="#4368e0"
mr="0.5rem"
></IconButton>
<IconButton
id="gradioAnalyticsButton"
as="a"
Expand Down
Loading