From f0e2cd340da105515cbf19285eb7c7ad96b10ea8 Mon Sep 17 00:00:00 2001 From: giljihun Date: Mon, 9 Feb 2026 21:44:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B5=9C=EA=B7=BC=ED=85=9C=ED=94=8C?= =?UTF-8?q?=EB=A6=BF=20=EC=84=A0=ED=83=9D=20->=20=EC=83=81=EC=84=B8=20?= =?UTF-8?q?=ED=94=84=EB=A6=AC=EB=B7=B0=EB=A1=9C=20=EA=B0=80=EB=8D=98=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 템플릿별 만들기 화면으로 이동 --- .../Workshop/Views/Main/WorkshopView+TopSection.swift | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Keychy/Keychy/Presentation/Workshop/Views/Main/WorkshopView+TopSection.swift b/Keychy/Keychy/Presentation/Workshop/Views/Main/WorkshopView+TopSection.swift index b6152782..074941d4 100644 --- a/Keychy/Keychy/Presentation/Workshop/Views/Main/WorkshopView+TopSection.swift +++ b/Keychy/Keychy/Presentation/Workshop/Views/Main/WorkshopView+TopSection.swift @@ -112,8 +112,11 @@ extension WorkshopView { templates: viewModel.recentTemplates, isLoading: viewModel.isLoading ) { template in - // 템플릿 상세 프리뷰로 이동 - router.push(.workshopPreview(item: template)) + // 템플릿별 만들기 화면으로 이동 + if let templateId = template.id, + let route = WorkshopRoute.from(string: templateId) { + router.push(route) + } } } }