diff --git a/SOPT-Stamp-iOS/Projects/Presentation/Sources/SignInScene/VC/SignInVC.swift b/SOPT-Stamp-iOS/Projects/Presentation/Sources/SignInScene/VC/SignInVC.swift index 013632a3..691ac836 100644 --- a/SOPT-Stamp-iOS/Projects/Presentation/Sources/SignInScene/VC/SignInVC.swift +++ b/SOPT-Stamp-iOS/Projects/Presentation/Sources/SignInScene/VC/SignInVC.swift @@ -92,7 +92,8 @@ public class SignInVC: UIViewController { @objc private func signUpButtonDidTap() { - print("sign up btn did tap") + let signUpVC = self.factory.makeSignUpVC() + self.navigationController?.pushViewController(signUpVC, animated: true) } }