diff --git a/src/components/search/Search/HitComponent.tsx b/src/components/search/Search/HitComponent.tsx index e96d61bfb..8ca3fffee 100644 --- a/src/components/search/Search/HitComponent.tsx +++ b/src/components/search/Search/HitComponent.tsx @@ -1,4 +1,4 @@ -import { Link as LinkComponent } from 'gatsby' +import { Link } from 'gatsby' import React, { FC } from 'react' import styled from 'styled-components' @@ -27,9 +27,9 @@ export const HitComponent: FC = (props: any) => { return ( - + {props.hit.title} {categories[categoryKey] ? `|${'\u00A0'}${categories[categoryKey]}` : ''} - + {props.hit.description && {props.hit.description}} )