From af22bbb64743ca84718fc25b828a36bddb0ee01e Mon Sep 17 00:00:00 2001 From: Brian Fletcher Date: Thu, 5 Jan 2023 14:20:14 +0000 Subject: [PATCH] remove container within container Signed-off-by: Brian Fletcher --- plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx index 035f44db8c..d727923d68 100644 --- a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx +++ b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx @@ -80,7 +80,7 @@ const ExamplesTable = (props: { examples: ActionExample[] }) => { {props.examples.map(example => { return ( - + <> {example.description} @@ -96,7 +96,7 @@ const ExamplesTable = (props: { examples: ActionExample[] }) => { /> - + ); })}