diff --git a/website/src/pages/showcase/_components/ShowcaseFilterToggle/index.tsx b/website/src/pages/showcase/_components/ShowcaseFilterToggle/index.tsx index aaada5d7618f..78c1126c61a6 100644 --- a/website/src/pages/showcase/_components/ShowcaseFilterToggle/index.tsx +++ b/website/src/pages/showcase/_components/ShowcaseFilterToggle/index.tsx @@ -44,8 +44,16 @@ export default function ShowcaseFilterToggle(): JSX.Element { }); }, [operator, location, history]); + const ClearTag = () => { + history.push({ + ...location, + search: '', + state: prepareUserState(), + }); + }; + return ( -
+
AND {/* eslint-enable @docusaurus/no-untranslated-text */} + +
); }