2.5.0 #10

Merged
rune merged 41 commits from 2.5.0 into main 2026-08-03 08:33:23 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 8c0cfb87f5 - Show all commits
+2 -2
View File
@@ -150,7 +150,7 @@ struct SidebarView: View {
} header: {
Text("Unfiled")
.dropDestination(for: String.self) { items, _ in
handleDrop(items, toFolder: nil)
_ = handleDrop(items, toFolder: nil)
}
}
}
@@ -192,7 +192,7 @@ struct SidebarView: View {
}
}
.dropDestination(for: String.self) { items, _ in
handleDrop(items, toFolder: folder.id)
_ = handleDrop(items, toFolder: folder.id)
}
}
+2 -2
View File
@@ -240,7 +240,7 @@ struct ConversationListView: View {
} header: {
Text("Unfiled")
.dropDestination(for: String.self) { items, _ in
handleDrop(items, toFolder: nil)
_ = handleDrop(items, toFolder: nil)
}
}
}
@@ -431,7 +431,7 @@ struct ConversationListView: View {
}
}
.dropDestination(for: String.self) { items, _ in
handleDrop(items, toFolder: folder.id)
_ = handleDrop(items, toFolder: folder.id)
}
}