Skip to content

Commit

Permalink
♻️ [#220] InputProfileInfoFeature / S 붙이기
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsh153 committed Aug 22, 2023
1 parent a545e08 commit 6d37757
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public struct InputProfileInformationObject {
public let contactEmail: String
public let major: String
public let portfoiloURL: String
public let techStack: [String]
public let techStacks: [String]

public init(
profileImageData: Data,
Expand All @@ -20,14 +20,14 @@ public struct InputProfileInformationObject {
contactEmail: String,
major: String,
portfoiloURL: String,
techStack: [String]
techStacks: [String]
) {
self.profileImageData = profileImageData
self.profileImageFilename = profileImageFilename
self.introduce = introduce
self.contactEmail = contactEmail
self.major = major
self.portfoiloURL = portfoiloURL
self.techStack = techStack
self.techStacks = techStacks
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ final class InputProfileInfoIntent: InputProfileInfoIntentProtocol {
contactEmail: state.email,
major: state.major,
portfoiloURL: state.portfolioURL,
techStack: state.techStacks
techStacks: state.techStacks
)
inputProfileDelegate?.completeToInputProfile(input: input)
}
Expand Down

0 comments on commit 6d37757

Please sign in to comment.