From 85acea7e648f8f555bc7f567371df97a642a76b3 Mon Sep 17 00:00:00 2001 From: Athou Date: Sun, 28 Sep 2025 07:30:12 +0200 Subject: [PATCH] fix warning --- commafeed-client/src/pages/app/FeedDetailsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commafeed-client/src/pages/app/FeedDetailsPage.tsx b/commafeed-client/src/pages/app/FeedDetailsPage.tsx index ed6c87e2..1c26ba74 100644 --- a/commafeed-client/src/pages/app/FeedDetailsPage.tsx +++ b/commafeed-client/src/pages/app/FeedDetailsPage.tsx @@ -50,7 +50,7 @@ function FilteringExpressionDescription() { export function FeedDetailsPage() { const { id } = useParams() - if (!id) throw Error("id required") + if (!id) throw new Error("id required") const apiKey = useAppSelector(state => state.user.profile?.apiKey) const dispatch = useAppDispatch()