Skip to content

Commit 10a1ac4

Browse files
committed
fix: 잘못된 BaseURL 수정
1 parent 1f7b943 commit 10a1ac4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/com/seogaemo/hackseoul_android/network/RetrofitClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ object RetrofitClient {
2121
fun getInstance(): Retrofit {
2222
if(instance == null) {
2323
instance = Retrofit.Builder()
24-
.baseUrl("")
24+
.baseUrl(com.seogaemo.hackseoul_android.BuildConfig.BASE_URL)
2525
.client(okHttpClient)
2626
.addConverterFactory(ScalarsConverterFactory.create())
2727
.addConverterFactory(GsonConverterFactory.create(gson))

0 commit comments

Comments
 (0)