Skip to content

Commit

Permalink
Reduce warning
Browse files Browse the repository at this point in the history
  • Loading branch information
livid committed Apr 3, 2024
1 parent 7e49352 commit 9a6c83a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Planet/Search/PlanetStore+Search.swift
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ extension PlanetStore {
}
}
// Collect results from all tasks
var allResults = await group.reduce(into: []) { $0 += $1 }
let allResults = await group.reduce(into: []) { $0 += $1 }

// Optionally sort the results if you have a specific criterion for 'top' results
// allResults.sort(by: { $0.articleCreated > $1.articleCreated })
Expand Down
2 changes: 1 addition & 1 deletion Planet/versioning.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 1957
CURRENT_PROJECT_VERSION = 1958

0 comments on commit 9a6c83a

Please sign in to comment.