Skip to content

Commit

Permalink
lint 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
DwEnn committed Aug 18, 2023
1 parent 554e9d3 commit 24c3b18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import androidx.compose.foundation.pager.rememberPagerState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.State
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.Modifier
Expand All @@ -36,8 +35,6 @@ import com.keyme.presentation.onboarding.guide.Guide04Screen
import com.keyme.presentation.onboarding.nickname.NicknameScreen
import com.keyme.presentation.onboarding.signin.SignInScreen
import kotlinx.coroutines.flow.collectLatest
import kotlinx.coroutines.flow.distinctUntilChanged
import kotlinx.coroutines.flow.filterNotNull
import kotlinx.coroutines.launch

@Composable
Expand Down Expand Up @@ -71,7 +68,7 @@ fun OnboardingScreen(
OnboardingStepsEnum.GUIDE_04,
)

LaunchedEffect(key1 = Unit){
LaunchedEffect(key1 = Unit) {
viewModel.userAuthState
.collectLatest {
when {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ import com.keyme.presentation.designsystem.theme.white_alpha_40
import com.keyme.presentation.onboarding.OnboardingViewModel
import com.keyme.presentation.onboarding.fadingAnimateFloatAsState


@Composable
fun NicknameScreen(
isVisible: Boolean,
Expand Down

0 comments on commit 24c3b18

Please sign in to comment.