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()