Skip to content

Commit

Permalink
Merge pull request #85 from manito-project/fix/#84
Browse files Browse the repository at this point in the history
[Fix] #84 - missionID String -> String?
  • Loading branch information
meltsplit authored Nov 2, 2024
2 parents a2df4c7 + 85698a4 commit c26af44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct UserResponse: Decodable {
struct SantaUserResponse: Decodable {
let id: String
let username: String
let missionId: String
let missionId: String?
}

extension UserResponse {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct User: Hashable {
struct SantaUser: Hashable {
let id: String
let username: String
let missionId: String
let missionId: String?
}


Expand Down

0 comments on commit c26af44

Please sign in to comment.