Skip to content

Commit

Permalink
chore(time): fix incorrect type definition 'GetLectureListResponseVal…
Browse files Browse the repository at this point in the history
…ue' (#97)
  • Loading branch information
SWARVY committed Aug 18, 2024
1 parent c6141e5 commit 0fc8218
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/time/src/widgets/time-table/api/getLectureList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ export interface GetLectureListResponseValue {
campus: string;
category: string;
code: string;
credit: 0;
grade: 0;
credit: number;
grade: number;
groupName: string;
isExceeded: true;
major: string;
name: string;
professor: string;
room: string;
year: 0;
year: number;
semester: string;
time: string;
type: LectureKey;
Expand Down

0 comments on commit 0fc8218

Please sign in to comment.