Skip to content

Commit 0aa516d

Browse files
committed
Use new Tab init with systemSymbol
1 parent c22fd6e commit 0aa516d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Modules/Sources/AppFeature/AppView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,31 +106,31 @@ struct LiquidTabView: View {
106106
TabView(selection: $store.selectedTab.sending(\.didSelectTab)) {
107107
Tab(
108108
AppTab.articles.title,
109-
systemImage: AppTab.articles.iconSymbol.rawValue,
109+
systemSymbol: AppTab.articles.iconSymbol,
110110
value: .articles
111111
) {
112112
StackTabView(store: store.scope(state: \.articlesTab, action: \.articlesTab))
113113
}
114114

115115
Tab(
116116
AppTab.favorites.title,
117-
systemImage: AppTab.favorites.iconSymbol.rawValue,
117+
systemSymbol: AppTab.favorites.iconSymbol,
118118
value: .favorites
119119
) {
120120
StackTabView(store: store.scope(state: \.favoritesTab, action: \.favoritesTab))
121121
}
122122

123123
Tab(
124124
AppTab.forum.title,
125-
systemImage: AppTab.forum.iconSymbol.rawValue,
125+
systemSymbol: AppTab.forum.iconSymbol,
126126
value: .forum
127127
) {
128128
StackTabView(store: store.scope(state: \.forumTab, action: \.forumTab))
129129
}
130130

131131
Tab(
132132
AppTab.profile.title,
133-
systemImage: AppTab.profile.iconSymbol.rawValue,
133+
systemSymbol: AppTab.profile.iconSymbol,
134134
value: .profile
135135
) {
136136
ProfileTab(store: store.scope(state: \.profileFlow, action: \.profileFlow))

0 commit comments

Comments
 (0)