1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
Kevin Koshiol 2024-01-23 22:43:56 -06:00
parent 2669d1d3ea
commit c2d1923917
3 changed files with 1 additions and 2 deletions

View file

@ -78,6 +78,7 @@
- [DinuD](https://github.com/DinuD)
- [Kevin Tan (Valius)](https://github.com/valius)
- [Rasmus Krämer](https://github.com/rasmuslos)
- [ntarelix](https://github.com/ntarelix)
## Emby Contributors

View file

@ -414,7 +414,6 @@ const UserParentalControl: FunctionComponent = () => {
return <AccessScheduleList
key={accessSchedule.Id}
index={index}
Id={accessSchedule.Id}
DayOfWeek={accessSchedule.DayOfWeek}
StartHour={accessSchedule.StartHour}
EndHour={accessSchedule.EndHour}

View file

@ -5,7 +5,6 @@ import IconButtonElement from '../../../elements/IconButtonElement';
type AccessScheduleListProps = {
index: number;
Id?: number;
DayOfWeek?: string;
StartHour?: number ;
EndHour?: number;