Skip to content

Commit

Permalink
chore: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seongminn committed Nov 28, 2023
1 parent a8c0351 commit 54f634c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/queries/useMatchCommentById/Fetcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { MatchCommentType } from '@/types/match';

import useMatchCommentById from './query';

type MatchCommentFetcher = {
type MatchCommentFetcherProps = {
matchId: string;
children: ({
commentList,
Expand All @@ -23,7 +23,7 @@ type MatchCommentFetcher = {
export default function MatchCommentFetcher({
matchId,
children,
}: MatchCommentFetcher) {
}: MatchCommentFetcherProps) {
const { commentList, error, fetchNextPage, hasNextPage, isFetching } =
useMatchCommentById(matchId);

Expand Down

0 comments on commit 54f634c

Please sign in to comment.