Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/mash-up-kr/PPAC-iOS into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
chansooo committed Aug 23, 2024
2 parents c122932 + 97d836d commit 2baf6dc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Projects/Core/DesignSystem/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ let project = Project(
.ResourceKit,
.ThirdParty.PopupView,
.ThirdParty.Kingfisher,
.ThirdParty.Lottie,
.Core.PPACModels
]
)
Expand Down
2 changes: 1 addition & 1 deletion Projects/Core/PPACNetwork/Sources/Requestable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ extension Requestable {
urlRequest.httpMethod = httpMethod.rawValue.uppercased()

var defaultHeaders = [
"x-device-id": UserInfo.shared.testDeviceId, // FIXME: testId가 필요없어지면 deviceId로 변경하기
"x-device-id": UserInfo.shared.deviceId,
"accept": "application/json",
"Content-Type": "application/json"
]
Expand Down
3 changes: 2 additions & 1 deletion Projects/Features/Search/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ let project = Project(
.Core.PPACNetwork,
.Feature.MemeDetail,
.ThirdParty.Dependency,
.ThirdParty.Kingfisher
.ThirdParty.Kingfisher,
.ThirdParty.SkeletonUI
]
)
]
Expand Down
3 changes: 2 additions & 1 deletion Projects/ResourceKit/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ let project = Project.configure(
sources: "Sources/**",
resources: "Resources/**",
dependencies: [
.ThirdParty.Dependency
.ThirdParty.Dependency,
.ThirdParty.Lottie
]
)
],
Expand Down

0 comments on commit 2baf6dc

Please sign in to comment.