Skip to content

Commit 898f6f2

Browse files
committed
Make EditorConfiguration sendable
1 parent f175f90 commit 898f6f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ios/Demo-iOS/Gutenberg.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@
309309
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
310310
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
311311
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
312+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
312313
LD_RUNPATH_SEARCH_PATHS = (
313314
"$(inherited)",
314315
"@executable_path/Frameworks",
@@ -340,6 +341,7 @@
340341
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
341342
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
342343
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
344+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
343345
LD_RUNPATH_SEARCH_PATHS = (
344346
"$(inherited)",
345347
"@executable_path/Frameworks",

ios/Sources/GutenbergKit/Sources/EditorConfiguration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22

3-
public struct EditorConfiguration {
3+
public struct EditorConfiguration: Sendable {
44
/// Initial title for populating the editor
55
public let title: String
66
/// Initial content for populating the editor

0 commit comments

Comments
 (0)