Skip to content

Commit

Permalink
[MERGE] #154 -> develop
Browse files Browse the repository at this point in the history
[FIX/#154] ํ™ˆ ๋ทฐ 1์ฐจ QA ๋ฐ˜์˜
  • Loading branch information
Hyobeen-Park authored Jul 19, 2024
2 parents 3d821a1 + d25cd93 commit cf1cf91
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 @@ -126,6 +126,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 @@ -81,13 +82,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 @@ -220,7 +221,6 @@ fun HomeRecommendInternDialog(
}
}
}
Spacer(modifier = Modifier.weight(1f))
Box(
modifier = Modifier.fillMaxWidth(),
contentAlignment = Alignment.BottomCenter
Expand Down

0 comments on commit cf1cf91

Please sign in to comment.