Skip to content

Commit

Permalink
fix(myclass): fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eleliauk committed Jan 16, 2025
1 parent 0056944 commit 2e6d182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/myclass/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Page: React.FC = () => {
]);
const [semSelector] = useState(['第一学期', '第二学期', '第三学期', '全部学期']);
const [year, setYear] = useState('2024-2025学年');
const [sem, setSem] = useState('第一学期');
const [sem, setSem] = useState('第二学期');

const [myclasses, setMyclasses] = useState<CouresProps[]>([]);

Expand Down

0 comments on commit 2e6d182

Please sign in to comment.