From 84b3b92743d31cec3baf06fd1bb6fd830d1cc7f1 Mon Sep 17 00:00:00 2001 From: sinamong0620 Date: Tue, 24 Sep 2024 19:26:42 +0900 Subject: [PATCH] =?UTF-8?q?#68=20fix:=20env=ED=8C=8C=EC=9D=BC=20=EB=B3=80?= =?UTF-8?q?=EC=88=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useSSE.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useSSE.ts b/src/hooks/useSSE.ts index 19de9c4..57b6902 100644 --- a/src/hooks/useSSE.ts +++ b/src/hooks/useSSE.ts @@ -28,7 +28,7 @@ export const useSSE = () => { // SSE 연결 설정 eventSource.current = new EventSourcePolyfill( - `${process.env.REACT_APP_API_SERVER_URL}/notifications/stream`, + `${process.env.REACT_APP_API_BASE_URL}/notifications/stream`, { headers: { Authorization: `Bearer ${localStorage.getItem('accessToken')}`,