Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into fix/#150-qa
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Jul 19, 2024
2 parents 86453e7 + cf1cf91 commit a34b36c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ fun HomeRoute(
viewModel.getHomeTodayInternList()
}

LaunchedEffect(key1 = true) {
viewModel.getFilteringInfo()
}

when (homeTodayState) {
is UiState.Success -> {
homeTodayInternList.value =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.wrapContentSize
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.Icon
Expand Down Expand Up @@ -68,13 +69,13 @@ fun HomeRecommendInternDialog(

Box(
modifier = Modifier
.fillMaxSize()
.wrapContentSize()
.padding(top = 32.dp),
contentAlignment = Alignment.TopCenter
) {
Column(
modifier = Modifier
.fillMaxSize()
.wrapContentSize()
.padding(horizontal = 11.dp),
horizontalAlignment = Alignment.CenterHorizontally
) {
Expand Down Expand Up @@ -207,7 +208,6 @@ fun HomeRecommendInternDialog(
}
}
}
Spacer(modifier = Modifier.weight(1f))
Box(
modifier = Modifier.fillMaxWidth(),
contentAlignment = Alignment.BottomCenter
Expand Down

0 comments on commit a34b36c

Please sign in to comment.