Skip to content

Commit b1db131

Browse files
committed
Removed subtitle for SomeScreen
1 parent 4d0fb20 commit b1db131

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Sources/ScreenData/Screens/SomeScreen.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ public struct SomeScreen: Codable, Hashable {
22
public var id: String?
33

44
public var title: String
5-
public var subtitle: String?
65

76
public var backgroundColor: SomeColor
87

@@ -13,15 +12,13 @@ public struct SomeScreen: Codable, Hashable {
1312
public init(
1413
id: String? = nil,
1514
title: String,
16-
subtitle: String?,
1715
backgroundColor: SomeColor,
1816
headerView: SomeView? = nil,
1917
someView: SomeView,
2018
footerView: SomeView? = nil
2119
) {
2220
self.id = id
2321
self.title = title
24-
self.subtitle = subtitle
2522
self.backgroundColor = backgroundColor
2623
self.headerView = headerView
2724
self.someView = someView

0 commit comments

Comments
 (0)