Skip to content

Commit

Permalink
✨[feat]: fastlane 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-wonji committed Nov 28, 2023
1 parent eceb6f6 commit 6c0a9f9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public struct CoreView: View {
appState.goToProfileSettingView.toggle()
}, isGoToProfileView: $appState.isGoToProfileView)
.frame(height: 40)
.findNavigator(isPresented: $appState.goToProfileSettingView)


} .navigationDestination(isPresented: $appState.isGoToProfileView) {
ProfileView(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public struct LoginView: View {

}
.onAppear{
print("\(authViewModel.isDeletAuth) , \(authViewModel.deleteAuth)")
if authViewModel.isDeletAuth {
authViewModel.deleteAuth = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public struct ProfileView: View {
authViewModel.searchUserIdRequest(uid: "\(authViewModel.userid)")

profileViewModel.changeImage()
print(profileViewModel.randomNickName)
if profileViewModel.randomNickName == "" {
await profileViewModel.randomNameRequest(commCdTpCd: .userDesc)
}
Expand Down Expand Up @@ -482,6 +483,7 @@ public struct ProfileView: View {
.onTapGesture {
authViewModel.isLogin = false
authViewModel.isLoginCheck = false

presentationMode.wrappedValue.dismiss()

}
Expand Down

0 comments on commit 6c0a9f9

Please sign in to comment.