From c80887ab38734eae6d8802e54071d9b63fabbf41 Mon Sep 17 00:00:00 2001 From: yungi-min Date: Sat, 8 Mar 2025 17:33:57 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20gist=20url=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/winningHistory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/winningHistory.ts b/src/hooks/winningHistory.ts index 0c19c03..8eade32 100644 --- a/src/hooks/winningHistory.ts +++ b/src/hooks/winningHistory.ts @@ -5,7 +5,7 @@ import { WinningHistory } from "@/types"; import { useEffect, useMemo, useState } from "react"; const WINNING_HISTORY_GIST_URL = - "https://gist.githubusercontent.com/anthonyminyungi/a7237c0717400512855c890d5b0e1ba3/raw/57ee9933c5ac0f6aaf4774adfa8c3dd169272f11/lottto-winning-history.json"; + "https://gist.githubusercontent.com/anthonyminyungi/a7237c0717400512855c890d5b0e1ba3/raw/lotto-winning-history.json"; export const useWinningHistory = (targetRound?: number): WinningHistory => { const [winningHistory, setWinningHistory] = useState();