Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StefKors committed Nov 1, 2024
1 parent 6881e00 commit 2190c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Shared/UserInterface/Models/PipelineStatus.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ enum PipelineStatus: String, Codable, Equatable {
case manual = "MANUAL"
/// Pipeline is scheduled to run.
case scheduled = "SCHEDULED"

static func from(_ state: GitHub.CheckStatusState?) -> Self? {
switch state {
case .pending: return .pending
Expand All @@ -45,7 +45,7 @@ enum PipelineStatus: String, Codable, Equatable {
case .none: return nil
}
}

static func from(_ state: GitHub.CheckConclusionState?) -> Self? {
switch state {
case .success: return .success
Expand Down
1 change: 0 additions & 1 deletion Shared/UserInterface/Views/MergeRequestRowView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ struct MergeRequestRowView: View {
.truncationMode(.middle)
.padding(.trailing


)

HorizontalMergeRequestSubRowView(request: request)
Expand Down

0 comments on commit 2190c51

Please sign in to comment.