Skip to content

Commit

Permalink
chore(time): fix typo 'GetLectureListReponseValue' -> 'GetLectureList…
Browse files Browse the repository at this point in the history
…ResponseValue' (#97)
  • Loading branch information
SWARVY committed Aug 18, 2024
1 parent ed7bf6f commit 3743ce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/time/src/widgets/time-table/api/getLectureList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface GetLectureListParams {
limit: number;
}

export interface GetLectureListReponseValue {
export interface GetLectureListResponseValue {
id: number;
campus: string;
category: string;
Expand All @@ -43,7 +43,7 @@ export interface GetLectureListReponseValue {
export interface GetLectureListResponse {
success: boolean;
data: {
values: GetLectureListReponseValue[];
values: GetLectureListResponseValue[];
};
hasPrevious: boolean;
hasNext: boolean;
Expand Down

0 comments on commit 3743ce0

Please sign in to comment.