From 0b6ef8e6cfdf63c45dbdb6a77f498696d4447bc8 Mon Sep 17 00:00:00 2001 From: MrSmart00 Date: Tue, 18 Jun 2024 23:13:41 +0900 Subject: [PATCH] Fix: rename --- app-ios/Sources/AboutFeature/AboutReducer.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-ios/Sources/AboutFeature/AboutReducer.swift b/app-ios/Sources/AboutFeature/AboutReducer.swift index 1b2304121..1ac876bb2 100644 --- a/app-ios/Sources/AboutFeature/AboutReducer.swift +++ b/app-ios/Sources/AboutFeature/AboutReducer.swift @@ -7,7 +7,7 @@ public struct AboutReducer { @ObservableState public struct State: Equatable { var path = StackState() - @Presents var presentation: Presentation.State? + @Presents var presentation: Destination.State? public init(path: StackState = .init()) { self.path = path @@ -17,7 +17,7 @@ public struct AboutReducer { public enum Action: ViewAction { case path(StackAction) case view(View) - case presentation(PresentationAction) + case presentation(PresentationAction) @CasePathable public enum View { @@ -31,7 +31,7 @@ public struct AboutReducer { } @Reducer(state: .equatable) - public enum Presentation { + public enum Destination { case codeOfConduct case privacyPolicy }