add
This commit is contained in:
parent
1d6eb48bb6
commit
079a705d9e
|
@ -10,6 +10,7 @@ interface CourseDetailContextType {
|
|||
selectedLectureId?: string | undefined;
|
||||
setSelectedLectureId?: React.Dispatch<React.SetStateAction<string>>;
|
||||
isLoading?: boolean;
|
||||
lectureIsLoading?: boolean;
|
||||
isHeaderVisible: boolean; // 新增
|
||||
setIsHeaderVisible: (visible: boolean) => void; // 新增
|
||||
}
|
||||
|
@ -59,6 +60,7 @@ export function CourseDetailProvider({
|
|||
selectedLectureId,
|
||||
setSelectedLectureId,
|
||||
isLoading,
|
||||
lectureIsLoading,
|
||||
isHeaderVisible,
|
||||
setIsHeaderVisible,
|
||||
}}>
|
||||
|
|
Loading…
Reference in New Issue