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} - + { /> - + ); })}