From 7bd1a87e1528e0137f2154c61c8b0ce5506e3cd0 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Fri, 10 Sep 2021 15:05:09 +0200 Subject: [PATCH] fix comments Signed-off-by: Vincenzo Scamporlino --- .../components/SearchType/SearchType.stories.tsx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/plugins/search/src/components/SearchType/SearchType.stories.tsx b/plugins/search/src/components/SearchType/SearchType.stories.tsx index 24a24fa4cb..da662d8fef 100644 --- a/plugins/search/src/components/SearchType/SearchType.stories.tsx +++ b/plugins/search/src/components/SearchType/SearchType.stories.tsx @@ -14,7 +14,6 @@ * limitations under the License. */ import React, { useState } from 'react'; -import { MemoryRouter } from 'react-router'; import { SearchType } from '../index'; import { SearchContext } from '../SearchContext'; @@ -30,15 +29,8 @@ export const Default = () => { const [types, setTypes] = useState([]); return ( - - {/* @ts-ignore (value requires more than what is used here) */} - - - - + + + ); };