File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
ios/Sources/GutenbergKit/Sources Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,6 @@ public struct EditorConfiguration {
3333 /// Endpoint for loading editor assets, used when enabling `shouldUsePlugins`
3434 public var editorAssetsEndpoint : URL ?
3535
36- // Cookies
37- public let cookies : [ HTTPCookie ]
38-
3936 /// Deliberately non-public – consumers should use `EditorConfigurationBuilder` to construct a configuration
4037 init (
4138 title: String ,
@@ -53,7 +50,6 @@ public struct EditorConfiguration {
5350 editorSettings: String ,
5451 locale: String ,
5552 editorAssetsEndpoint: URL ? = nil ,
56- cookies: [ HTTPCookie ] = [ ]
5753 ) {
5854 self . title = title
5955 self . content = content
@@ -70,7 +66,6 @@ public struct EditorConfiguration {
7066 self . editorSettings = editorSettings
7167 self . locale = locale
7268 self . editorAssetsEndpoint = editorAssetsEndpoint
73- self . cookies = cookies
7469 }
7570
7671 public func toBuilder( ) -> EditorConfigurationBuilder {
You can’t perform that action at this time.
0 commit comments