Skip to content

Commit 6384e7b

Browse files
committed
removed unnecessary imports
1 parent 00bd464 commit 6384e7b

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/frontend/src/pages/HomePage/Home.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,18 @@
33
* See the LICENSE file in the repository root folder for details.
44
*/
55

6-
import { Typography, Alert, Link } from '@mui/material';
7-
import { routes } from '../../utils/routes';
6+
import { Typography } from '@mui/material';
87
import OverdueWorkPackageAlerts from './OverdueWorkPackageAlerts';
98
import UsefulLinks from './UsefulLinks';
109
import WorkPackagesByTimelineStatus from './WorkPackagesByTimelineStatus';
1110
import UpcomingDeadlines from './UpcomingDeadlines';
1211
import { useCurrentUser, useSingleUserSettings } from '../../hooks/users.hooks';
1312
import LoadingIndicator from '../../components/LoadingIndicator';
1413
import ErrorPage from '../ErrorPage';
15-
import { useHistory } from 'react-router-dom';
1614
import PageLayout from '../../components/PageLayout';
1715

1816
const Home = () => {
1917
const user = useCurrentUser();
20-
const history = useHistory();
2118
const { isLoading, isError, error, data: userSettingsData } = useSingleUserSettings(user.userId);
2219

2320
if (isLoading || !userSettingsData) return <LoadingIndicator />;

0 commit comments

Comments
 (0)