feature/v2-unified-renewal #379

Merged
kjs merged 145 commits from feature/v2-unified-renewal into main 2026-02-03 12:11:19 +09:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 9b8546ebef - Show all commits

View File

@ -265,8 +265,10 @@ export default function CreateScreenModal({ open, onOpenChange, onCreated }: Cre
setSelectedRestApiId(null); setSelectedRestApiId(null);
setRestApiEndpoint(""); setRestApiEndpoint("");
setRestApiJsonPath("data"); setRestApiJsonPath("data");
} catch (e) { } catch (e: any) {
// 필요 시 토스트 추가 가능 console.error("화면 생성 실패:", e);
const errorMessage = e?.response?.data?.message || e?.message || "화면 생성에 실패했습니다.";
alert(errorMessage);
} finally { } finally {
setSubmitting(false); setSubmitting(false);
} }