Fixed component syntax

This commit is contained in:
Nick Sandstrom 2025-12-16 13:43:55 -08:00
parent 7c45542332
commit 38033da90f

View file

@ -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;