fix warning

This commit is contained in:
Athou
2025-09-28 07:30:12 +02:00
parent 0e4ff99602
commit 85acea7e64

View File

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