Remove FakeLeaveRoomPresenter

This commit is contained in:
Benoit Marty 2024-10-07 16:39:04 +02:00 committed by Benoit Marty
parent 25e5fde061
commit 792bc25ca2
7 changed files with 18 additions and 83 deletions

View file

@ -57,9 +57,10 @@ fun aLeaveRoomState(
confirmation: LeaveRoomState.Confirmation = LeaveRoomState.Confirmation.Hidden,
progress: LeaveRoomState.Progress = LeaveRoomState.Progress.Hidden,
error: LeaveRoomState.Error = LeaveRoomState.Error.Hidden,
eventSink: (LeaveRoomEvent) -> Unit = {},
) = LeaveRoomState(
confirmation = confirmation,
progress = progress,
error = error,
eventSink = {},
eventSink = eventSink,
)