From 4a95c72a6f24751e6f408e5b9385309947f10cc3 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Fri, 27 Jun 2025 10:46:05 -0700 Subject: [PATCH] Having Claude finish implementation of question dialog --- frontend/src/pages/candidate/Profile.tsx | 114 ++++++++++++++++++++--- 1 file changed, 101 insertions(+), 13 deletions(-) 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 (