Skip to content

Commit 319ab04

Browse files
fix: remove type script errors for docker build
1 parent cb9f730 commit 319ab04

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

client/src/components/Dashboard.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import {
55
Chip,
66
Grid,
77
CircularProgress,
8-
IconButton,
9-
Stack,
108
Button,
119
Dialog,
1210
DialogTitle,
@@ -21,7 +19,7 @@ import {
2119
import CheckCircleIcon from '@mui/icons-material/CheckCircle';
2220
import CancelIcon from '@mui/icons-material/Cancel';
2321
import { useEffect, useState, useMemo } from 'react';
24-
import { matchesService, MatchesServiceError } from '../services/matchesService';
22+
import { matchesService } from '../services/matchesService';
2523
import { getMatchRequests, MatchRequest } from '../services/matchRequestService';
2624
import { Match, MatchesResponse } from '../types/matches';
2725
import { useAuth0 } from '@auth0/auth0-react';
@@ -44,7 +42,6 @@ const Dashboard = () => {
4442
const [snackbarSeverity, setSnackbarSeverity] = useState<'success' | 'error'>('success');
4543

4644
const theme = useTheme();
47-
const isLargeScreen = useMediaQuery(theme.breakpoints.up('md'));
4845
const smDown = useMediaQuery(theme.breakpoints.down('sm'));
4946

5047
useEffect(() => {

0 commit comments

Comments
 (0)