diff --git a/StepExample/Review/ReviewWireframe.swift b/StepExample/Review/ReviewWireframe.swift index d6c661a..d1cece2 100644 --- a/StepExample/Review/ReviewWireframe.swift +++ b/StepExample/Review/ReviewWireframe.swift @@ -19,7 +19,7 @@ func reviewStep(_ navigation: UINavigationController) -> StepT Void)? + var completion: ((()) -> Void)? init(navigation: UINavigationController) { self.navigation = navigation } @@ -37,7 +37,7 @@ class ReviewWireframe: Step { extension ReviewWireframe: ReviewViewDelegate { func didIndicateDoneAction() { - self.completion?() + self.completion?(()) } }