From 54f634c4e4917ac23c287cca48bc6fda88fb5931 Mon Sep 17 00:00:00 2001 From: seongminn Date: Tue, 28 Nov 2023 21:57:16 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=98=A4=ED=83=80=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/queries/useMatchCommentById/Fetcher.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/queries/useMatchCommentById/Fetcher.tsx b/src/queries/useMatchCommentById/Fetcher.tsx index a1cb1ad..1ac5e28 100644 --- a/src/queries/useMatchCommentById/Fetcher.tsx +++ b/src/queries/useMatchCommentById/Fetcher.tsx @@ -5,7 +5,7 @@ import { MatchCommentType } from '@/types/match'; import useMatchCommentById from './query'; -type MatchCommentFetcher = { +type MatchCommentFetcherProps = { matchId: string; children: ({ commentList, @@ -23,7 +23,7 @@ type MatchCommentFetcher = { export default function MatchCommentFetcher({ matchId, children, -}: MatchCommentFetcher) { +}: MatchCommentFetcherProps) { const { commentList, error, fetchNextPage, hasNextPage, isFetching } = useMatchCommentById(matchId);