diff --git a/app-ios/Sources/Theme/ColorAsset+Sendable.swift b/app-ios/Sources/Theme/ColorAsset+Sendable.swift new file mode 100644 index 000000000..6943a3818 --- /dev/null +++ b/app-ios/Sources/Theme/ColorAsset+Sendable.swift @@ -0,0 +1,5 @@ +#if hasFeature(RetroactiveAttribute) +extension ColorAsset: @retroactive @unchecked Sendable {} +#else +extension ColorAsset: @unchecked Sendable {} +#endif diff --git a/app-ios/Sources/Theme/FontConvertible+Sendable.swift b/app-ios/Sources/Theme/FontConvertible+Sendable.swift new file mode 100644 index 000000000..4413ea7b5 --- /dev/null +++ b/app-ios/Sources/Theme/FontConvertible+Sendable.swift @@ -0,0 +1,5 @@ +#if hasFeature(RetroactiveAttribute) +extension FontConvertible: @retroactive @unchecked Sendable {} +#else +extension FontConvertible: @unchecked Sendable {} +#endif