From 7c518eb6a45e77b190d6d0db6d5618ec4c52c489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=9D=EC=A7=84?= Date: Sun, 29 Sep 2024 22:38:38 +0900 Subject: [PATCH] =?UTF-8?q?[no-issue]=20fix:=20=EC=9E=98=EB=AA=BB=EB=90=9C?= =?UTF-8?q?=20=EB=93=A4=EC=97=AC=EC=93=B0=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/building-your-application/data-fetching/fetching.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pages/docs/app/building-your-application/data-fetching/fetching.mdx b/pages/docs/app/building-your-application/data-fetching/fetching.mdx index 04dc2f8..023db74 100644 --- a/pages/docs/app/building-your-application/data-fetching/fetching.mdx +++ b/pages/docs/app/building-your-application/data-fetching/fetching.mdx @@ -179,9 +179,7 @@ import fetcher from '@/utils/fetcher' export default function PollingComponent { // 폴링 간격을 2000 밀리초로 설정 - const { - - data } = useSWR('/api/data', fetcher, { refreshInterval: 2000 }); + const { data } = useSWR('/api/data', fetcher, { refreshInterval: 2000 }); return '...' }