From 44352987749abb9f74198ad45be4ed44dc92c54b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 5 Dec 2023 17:29:06 +0900 Subject: [PATCH] =?UTF-8?q?=E6=A4=9C=E7=B4=A2=E7=B5=90=E6=9E=9C=E3=81=AE?= =?UTF-8?q?=E3=82=B3=E3=83=B3=E3=83=9D=E3=83=BC=E3=83=8D=E3=83=B3=E3=83=88?= =?UTF-8?q?=E3=82=92Linter=E3=83=AB=E3=83=BC=E3=83=AB=E3=81=AB=E5=BE=93?= =?UTF-8?q?=E3=81=A3=E3=81=A6=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/search/Search/HitComponent.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}} )