From 823140028329c3855dbabea3fe88c788c49e3792 Mon Sep 17 00:00:00 2001 From: Pavel Holec Date: Fri, 12 Apr 2024 10:51:52 +0200 Subject: [PATCH] Make `CardLayout` Sendable --- Sources/Orbit/Components/Card.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Orbit/Components/Card.swift b/Sources/Orbit/Components/Card.swift index aeb50c633f2..a77deacc983 100644 --- a/Sources/Orbit/Components/Card.swift +++ b/Sources/Orbit/Components/Card.swift @@ -195,7 +195,7 @@ public extension AccessibilityID { // MARK: - Types /// The layout of Orbit ``Card`` stack content. -public struct CardLayout { +public struct CardLayout: Sendable { /// Content layout uses a `VStack` with default `.medium` padding and spacing. public static let `default` = Self()