Skip to content

Commit 1a44cba

Browse files
committed
Fix compilation error
1 parent 2b52212 commit 1a44cba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DemoApp/Sources/Components/DemoAppViewFactory.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ final class DemoAppViewFactory: ViewFactory {
5353
AppControlsWithChat(viewModel: viewModel)
5454
}
5555

56-
func makeCallTopView(viewModel: CallViewModel) -> DemoCallTopView {
57-
DemoCallTopView(viewModel: viewModel)
56+
func makeCallTopView(viewModel: CallViewModel) -> some View {
57+
DemoCallTopView(viewFactory: self, viewModel: viewModel)
5858
}
5959

6060
func makeVideoCallParticipantModifier(

0 commit comments

Comments
 (0)