diff --git a/frontend/src/pages/candidate/Profile.tsx b/frontend/src/pages/candidate/Profile.tsx index 31777ff..aee95e6 100644 --- a/frontend/src/pages/candidate/Profile.tsx +++ b/frontend/src/pages/candidate/Profile.tsx @@ -44,6 +44,7 @@ import { Phone, Email, AccountCircle, + LiveHelp, } from '@mui/icons-material'; import { useTheme } from '@mui/material/styles'; import { useAuth } from 'hooks/AuthContext'; @@ -67,22 +68,22 @@ const VisuallyHiddenInput = styled('input')({ interface TabPanelProps { children?: React.ReactNode; - index: number; - value: number; + value: string; + active: string; } function TabPanel(props: TabPanelProps): JSX.Element { - const { children, value, index, ...other } = props; + const { children, value, active, ...other } = props; return (