From 0ba22df233273ba2eb342b2c8f3db096ebc219fd Mon Sep 17 00:00:00 2001
From: Nick Sandstrom <32273437+nick4810@users.noreply.github.com>
Date: Tue, 16 Dec 2025 11:53:26 -0800
Subject: [PATCH] Updated Component syntax
---
frontend/src/pages/DVR.jsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/frontend/src/pages/DVR.jsx b/frontend/src/pages/DVR.jsx
index bca5e246..1f3b98f5 100644
--- a/frontend/src/pages/DVR.jsx
+++ b/frontend/src/pages/DVR.jsx
@@ -175,7 +175,7 @@ const DVRPage = () => {
{ maxWidth: '36rem', cols: 1 },
]}
>
- {RecordingList(inProgress)}
+ {}
{inProgress.length === 0 && (
Nothing recording right now.
@@ -197,7 +197,7 @@ const DVRPage = () => {
{ maxWidth: '36rem', cols: 1 },
]}
>
- {RecordingList(upcoming)}
+ {}
{upcoming.length === 0 && (
No upcoming recordings.
@@ -219,7 +219,7 @@ const DVRPage = () => {
{ maxWidth: '36rem', cols: 1 },
]}
>
- {RecordingList(completed)}
+ {}
{completed.length === 0 && (
No completed recordings yet.