From c95291d14c12ad10ffd7910ad931a2663d147ffb Mon Sep 17 00:00:00 2001 From: Brian Fletcher Date: Mon, 9 Jan 2023 16:02:57 +0000 Subject: [PATCH] address review comments Signed-off-by: Brian Fletcher --- .../src/components/ActionsPage/ActionsPage.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx index d727923d68..34cf58441f 100644 --- a/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx +++ b/plugins/scaffolder/src/components/ActionsPage/ActionsPage.tsx @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import React from 'react'; +import React, { Fragment } from 'react'; import useAsync from 'react-use/lib/useAsync'; import { scaffolderApiRef } from '../../api'; import { @@ -80,13 +80,13 @@ const ExamplesTable = (props: { examples: ActionExample[] }) => { {props.examples.map(example => { return ( - <> - + + {example.description} - + { /> - + ); })}