Fix concurrency warning in SendToCommand.

This commit is contained in:
Brent Simmons 2024-05-03 22:05:35 -07:00
parent 2418076364
commit 18d0b0e1e7
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public protocol SendToCommand {
/// The image for the command.
///
/// Often the icon of the target application.
var image: RSImage? { get }
@MainActor var image: RSImage? { get }
/// Determine whether an object can be sent to the target application.
///