Skip to content

Commit

Permalink
[chore] #93 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Aug 1, 2023
1 parent 84761a6 commit a06f4e4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package com.android.go.sopt.winey.presentation.main

import android.util.Log
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.android.go.sopt.winey.domain.entity.User
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class WineyFeedFragment : BindingFragment<FragmentWineyFeedBinding>(R.layout.fra
}

private fun initGetUserStateObserver() {
lifecycleScope.launch{
lifecycleScope.launch {
mainViewModel.getUserState.collect { state ->
when (state) {
is UiState.Success -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import androidx.lifecycle.lifecycleScope
import com.android.go.sopt.winey.R
import com.android.go.sopt.winey.databinding.FragmentMyPageBinding
import com.android.go.sopt.winey.domain.entity.User
import com.android.go.sopt.winey.presentation.main.MainActivity
import com.android.go.sopt.winey.presentation.main.MainViewModel
import com.android.go.sopt.winey.presentation.main.mypage.myfeed.MyFeedFragment
import com.android.go.sopt.winey.util.binding.BindingFragment
Expand Down

0 comments on commit a06f4e4

Please sign in to comment.