mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
Fixed component syntax
This commit is contained in:
parent
7c45542332
commit
38033da90f
1 changed files with 2 additions and 2 deletions
|
|
@ -93,7 +93,7 @@ const DVRPage = () => {
|
|||
return categorizeRecordings(recordings, toUserTime, now);
|
||||
}, [recordings, now, toUserTime]);
|
||||
|
||||
const RecordingList = (list) => {
|
||||
const RecordingList = ({ list }) => {
|
||||
return list.map((rec) => (
|
||||
<RecordingCard
|
||||
key={`rec-${rec.id}`}
|
||||
|
|
@ -102,7 +102,7 @@ const DVRPage = () => {
|
|||
onOpenRecurring={openRuleModal}
|
||||
/>
|
||||
));
|
||||
}
|
||||
};
|
||||
|
||||
const handleOnWatchLive = () => {
|
||||
const rec = detailsRecording;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue