From bf8a2d0b36065b507d7b9d6ec0841f4192b642b4 Mon Sep 17 00:00:00 2001
From: hryeong66 <jhr110326@gmail.com>
Date: Thu, 3 Oct 2024 17:42:04 +0900
Subject: [PATCH] =?UTF-8?q?etc:=20=EC=84=9C=EB=B2=84=20=EC=A3=BC=EC=86=8C?=
 =?UTF-8?q?=20=EB=B0=8F=20deviceId=20=EB=B3=80=EA=B2=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Projects/Core/PPACNetwork/Sources/Requestable.swift | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Projects/Core/PPACNetwork/Sources/Requestable.swift b/Projects/Core/PPACNetwork/Sources/Requestable.swift
index af8acbc..90f7592 100644
--- a/Projects/Core/PPACNetwork/Sources/Requestable.swift
+++ b/Projects/Core/PPACNetwork/Sources/Requestable.swift
@@ -33,8 +33,8 @@ public protocol Requestable {
 extension Requestable {
   
   private var baseUrl: String {
-    return "http://ppac-server.run.goorm.io/api" // 개발 서버
-    //return "https://ppac-server-goorm.run.goorm.site/api" // 운영 서버
+    //return "http://ppac-server.run.goorm.io/api" // 개발 서버
+    return "https://ppac-server-goorm.run.goorm.site/api" // 운영 서버
   }
   
   public func makeURL() -> URL? {
@@ -47,7 +47,7 @@ extension Requestable {
     urlRequest.httpMethod = httpMethod.rawValue.uppercased()
     
     var defaultHeaders = [
-      "x-device-id": UserInfo.shared.testDeviceId,
+      "x-device-id": UserInfo.shared.deviceId,
       "accept": "application/json",
       "Content-Type": "application/json"
     ]