Skip to content

Commit

Permalink
Merge pull request #208 from shreyas1434shinde/BugFixes
Browse files Browse the repository at this point in the history
#PS-1769 Course Planner bottom drawer desktop view UI
  • Loading branch information
itsvick authored Aug 29, 2024
2 parents ab4a0a3 + 86f81ac commit 5ad0654
Show file tree
Hide file tree
Showing 5 changed files with 619 additions and 202 deletions.
5 changes: 2 additions & 3 deletions src/components/HorizontalLinearStepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ import { useTranslation } from 'react-i18next';
import { useTheme } from '@mui/material/styles';
const steps: string[] = ['Board', 'Subjects', 'Registration'];

export default function HorizontalLinearStepper() {
const [activeStep, setActiveStep] = React.useState<number>(1);

export default function HorizontalLinearStepper({activeStep}) {
const { t } = useTranslation();
const theme = useTheme<any>();


const CustomStepIcon = (props: any) => {
const { icon, active, completed } = props;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/attendance-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,9 @@ const AttendanceOverview: React.FC<AttendanceOverviewProps> = () => {
padding: '15px 20px 5px',
}}
width={'100%'}
onClick={handleBackEvent}
>
<KeyboardBackspaceOutlinedIcon
onClick={handleBackEvent}
cursor={'pointer'}
sx={{ color: theme.palette.warning['A200'] }}
/>
Expand Down
Loading

0 comments on commit 5ad0654

Please sign in to comment.