File tree 2 files changed +3
-1
lines changed
priv/templates/lvn.swiftui.gen/xcodegen/TemplateApp
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
- Swift 6 is now required to build LiveView Native applications
20
20
- ` Section ` now uses the ` isExpanded ` and ` phx-change ` attributes to enable collapsing in sidebar-styled ` List ` views
21
21
- ` liveview-native-core ` has been updated to v0.4.0, and is now used for all internal networking
22
+ - ` LiveConnectionError ` was removed, use error types from ` LiveViewNativeCore ` instead
22
23
23
24
### Fixed
24
25
- Views will now update properly when the server changes the value of a form field (#1483 )
Original file line number Diff line number Diff line change 5
5
6
6
import SwiftUI
7
7
import LiveViewNative
8
+ import LiveViewNativeCore
8
9
9
10
struct ErrorView : View {
10
11
let error : Error
@@ -102,5 +103,5 @@ struct ErrorView: View {
102
103
}
103
104
104
105
#Preview {
105
- ErrorView ( error: LiveConnectionError . initialParseError ( missingOrInvalid : . csrfToken ) )
106
+ ErrorView ( error: LiveSocketError . NoDocumentInJoinPayload )
106
107
}
You can’t perform that action at this time.
0 commit comments