From 06affd9614e3944420864b299a2f7de209482dcf Mon Sep 17 00:00:00 2001 From: gahusb Date: Sun, 17 May 2026 11:54:10 +0900 Subject: [PATCH] =?UTF-8?q?feat(insta):=20swap=20google=5Ftrends=20source?= =?UTF-8?q?=20for=20youtube=5Ftrending=20(Google=20Trends=20API=20?= =?UTF-8?q?=ED=8F=90=EA=B8=B0=20=EB=8C=80=EC=9D=91)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/insta/InstaCards.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/insta/InstaCards.jsx b/src/pages/insta/InstaCards.jsx index d7c7d06..975cb24 100644 --- a/src/pages/insta/InstaCards.jsx +++ b/src/pages/insta/InstaCards.jsx @@ -181,7 +181,7 @@ function ExternalTrendsPanel({ onCreateSlate }) { const load = useCallback(async () => { const [n, g] = await Promise.all([ getInstaTrends({ source: 'naver_popular', days: 2 }), - getInstaTrends({ source: 'google_trends', days: 2 }), + getInstaTrends({ source: 'youtube_trending', days: 2 }), ]); setNaver(n.items || []); setGoogle(g.items || []); @@ -254,7 +254,7 @@ function ExternalTrendsPanel({ onCreateSlate }) { ))}
-

🌐 Google Trends

+

πŸ“Ί YouTube 인기

{google.length === 0 &&

μ—†μŒ

} {google.map(renderRow)}