Skip to content

Commit bb9d3f9

Browse files
committed
Remove cookie configuration
1 parent b2caf40 commit bb9d3f9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ios/Sources/GutenbergKit/Sources/EditorConfiguration.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)