Skip to content

Commit 9d95220

Browse files
committed
git: Correct ordering for checkout menu
1 parent a027a50 commit 9d95220

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CodeApp/Managers/MainApp.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -724,9 +724,9 @@ class MainApp: ObservableObject {
724724

725725
Task {
726726
let references: [ReferenceType] =
727-
(try await gitServiceProvider.remoteBranches())
727+
(try await gitServiceProvider.tags())
728+
+ (try await gitServiceProvider.remoteBranches())
728729
+ (try await gitServiceProvider.localBranches())
729-
+ (try await gitServiceProvider.tags())
730730
await MainActor.run {
731731
self.stateManager.availableCheckoutDestination = references.map {
732732
CheckoutDestination(reference: $0)

0 commit comments

Comments
 (0)