Skip to content

Commit

Permalink
#26 [Chore] 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
soletree committed May 16, 2024
1 parent 1eaeee0 commit 3f31640
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Score/Score/Reducer/MyPage/Setting/SettingMainFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct SettingMainFeature {

struct State: Equatable {
@PresentationState var destination: Destination.State?
@BindingState var isPresentedSignOutDialog: Bool = false
@BindingState var isPresentingSignOutDialogDialog: Bool = false
}

enum Action: BindableAction {
Expand Down Expand Up @@ -61,11 +61,11 @@ struct SettingMainFeature {
return .none

case .signOutButtonTapped:
state.isPresentedSignOutDialog = true
state.isPresentingSignOutDialogDialog = true
return .none

case .dialogDismissButtonTapped:
state.isPresentedSignOutDialog = false
state.isPresentingSignOutDialogDialog = false
return .none

case .dismissButtonTapped:
Expand Down

0 comments on commit 3f31640

Please sign in to comment.