compilation error fixed

This commit is contained in:
NIkita Fedrunov 2022-09-06 07:18:45 +02:00
parent 61cf3c3125
commit 891173c04a
1 changed files with 4 additions and 4 deletions

View File

@ -27,13 +27,13 @@ data class InvitesViewState(
) : MavericksState
sealed interface InvitesContentState {
object Loading : InvitesContentState()
object Loading : InvitesContentState
data class Empty(
val title: CharSequence,
val image: Drawable?,
val message: CharSequence
) : InvitesContentState()
) : InvitesContentState
data class Content(val content: PagedList<RoomSummary>) : InvitesContentState()
data class Error(val throwable: Throwable) : InvitesContentState()
data class Content(val content: PagedList<RoomSummary>) : InvitesContentState
data class Error(val throwable: Throwable) : InvitesContentState
}