Skip to content

Commit

Permalink
Apply SwiftFormat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
peng-u-0807 committed Jan 28, 2024
1 parent 82a5e8d commit fa7aa27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SNUTT-2022/SNUTT/Repositories/Dto/NotificationDto.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ struct NotificationDto: Decodable {
created_at = try container.decode(String.self, forKey: .created_at)
user_id = try? container.decode(String.self, forKey: .user_id)
type = try container.decode(Int.self, forKey: .type)

let type = NotificationType(rawValue: type) ?? .normal
var title = try container.decode(String.self, forKey: .title)
if title.isEmpty {
Expand Down

0 comments on commit fa7aa27

Please sign in to comment.