Skip to content

Commit

Permalink
Fix status page crash (#2231)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiagr authored May 15, 2024
1 parent 23c1c40 commit 00b7e1e
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.Button
import androidx.compose.material.CircularProgressIndicator
import androidx.compose.material.Icon
Expand Down Expand Up @@ -101,10 +99,8 @@ fun StatusPage(

@Composable
fun StatusPageContent(viewModel: StatusViewModel) {
val scrollState = rememberScrollState()
Column(
modifier = Modifier
.verticalScroll(scrollState)
.padding(16.dp)
.fillMaxWidth(),
) {
Expand Down

0 comments on commit 00b7e1e

Please sign in to comment.