File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
Examples/TicTacToe/tic-tac-toe/Sources Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ public struct LoginView: View {
99 let store : StoreOf < Login >
1010
1111 struct ViewState : Equatable {
12- var alert : AlertState < Login . AlertAction > ?
1312 @BindingViewState var email : String
1413 var isActivityIndicatorVisible : Bool
1514 var isFormDisabled : Bool
@@ -75,7 +74,6 @@ public struct LoginView: View {
7574extension BindingViewStore < Login . State > {
7675 var view : LoginView . ViewState {
7776 LoginView . ViewState (
78- alert: self . alert,
7977 email: self . $email,
8078 isActivityIndicatorVisible: self . isLoginRequestInFlight,
8179 isFormDisabled: self . isLoginRequestInFlight,
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ public struct TwoFactorView: View {
77 let store : StoreOf < TwoFactor >
88
99 struct ViewState : Equatable {
10- var alert : AlertState < TwoFactor . Action . Alert > ?
1110 @BindingViewState var code : String
1211 var isActivityIndicatorVisible : Bool
1312 var isFormDisabled : Bool
@@ -57,7 +56,6 @@ public struct TwoFactorView: View {
5756extension BindingViewStore < TwoFactor . State > {
5857 var view : TwoFactorView . ViewState {
5958 TwoFactorView . ViewState (
60- alert: self . alert,
6159 code: self . $code,
6260 isActivityIndicatorVisible: self . isTwoFactorRequestInFlight,
6361 isFormDisabled: self . isTwoFactorRequestInFlight,
You can’t perform that action at this time.
0 commit comments