From 5dfc23f1e8b136aab153511e2463fc0468488f9f Mon Sep 17 00:00:00 2001 From: Firepup650 <70233190+Firepup6500@users.noreply.github.com> Date: Fri, 25 Jul 2025 11:25:31 -0500 Subject: [PATCH] Update broken url in slack channels page (#1569) --- components/slack/channels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/slack/channels.js b/components/slack/channels.js index 93e969ca..493e42a5 100644 --- a/components/slack/channels.js +++ b/components/slack/channels.js @@ -9,7 +9,7 @@ const withCommas = x => x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') export default function Channels() { const { data: millionCount } = useSWR( - 'https://jia.samuel.hackclub.app/api/currentNumber', + 'https://drac.firepup650.hackclub.app/api/currentNumber', fetcher, { refreshInterval: 10_000 } )