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);
setRestApiEndpoint("");
setRestApiJsonPath("data");
} catch (e) {
// 필요 시 토스트 추가 가능
} catch (e: any) {
console.error("화면 생성 실패:", e);
const errorMessage = e?.response?.data?.message || e?.message || "화면 생성에 실패했습니다.";
alert(errorMessage);
} finally {
setSubmitting(false);
}