From dc46e67df14766d4fa24c19a4ff85fab64be8769 Mon Sep 17 00:00:00 2001 From: Simon Howe Date: Tue, 17 Oct 2023 10:01:22 +0200 Subject: [PATCH] Fix up TS errors --- ui/pages/v2/PolicyDetailsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pages/v2/PolicyDetailsPage.tsx b/ui/pages/v2/PolicyDetailsPage.tsx index cae7f6052f..03fa057fcf 100644 --- a/ui/pages/v2/PolicyDetailsPage.tsx +++ b/ui/pages/v2/PolicyDetailsPage.tsx @@ -14,7 +14,7 @@ type Props = { const PolicyDetailsPage = ({ className, clusterName, id }: Props) => { const { data, isLoading, error } = useGetPolicyDetails({ clusterName, - policyName: id, + name: id, }); return (