From 6a5cbde828c3a5cfbbcf0051a25d6a9d3ddc9534 Mon Sep 17 00:00:00 2001 From: Nik Nasr Date: Sun, 10 Nov 2024 10:20:52 +0000 Subject: [PATCH] tmp fix Signed-off-by: Nik Nasr --- libs/features/overview-route/src/lib/Details/Deployment.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/features/overview-route/src/lib/Details/Deployment.tsx b/libs/features/overview-route/src/lib/Details/Deployment.tsx index 828399f9..01df2fc6 100644 --- a/libs/features/overview-route/src/lib/Details/Deployment.tsx +++ b/libs/features/overview-route/src/lib/Details/Deployment.tsx @@ -20,11 +20,11 @@ export function DeploymentDetails() { } > - {DeploymentForm} + ); } -function DeploymentForm({ paramValue }: { paramValue: string }) { - return
{paramValue}
; +function DeploymentForm() { + return
deployment
; }