File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public struct MessageRow<CustomContent: View>: Identifiable {
3333public enum MessageRowType < CustomContent: View > {
3434 case attributed( AttributedOutput )
3535 case rawText( String )
36- case customContent( ( _ id : UUID ? ) -> CustomContent )
36+ case customContent( ( ) -> CustomContent )
3737
3838 public var text : String {
3939 switch self {
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public struct MessageRowView<CustomContent: View>: View {
6868 }
6969
7070 case . customContent( let customViewProvider) :
71- customViewProvider ( message . id )
71+ customViewProvider ( )
7272 }
7373
7474 if let error = responseError {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public struct VoiceChatView<CustomContent: View>: View {
3232 }
3333
3434 case . customContent( let customViewProvider) :
35- customViewProvider ( nil )
35+ customViewProvider ( )
3636 }
3737 }
3838 }
You can’t perform that action at this time.
0 commit comments