diff --git a/src/components/profile/profile-edit.tsx b/src/components/profile/profile-edit.tsx index ae5856d7cf3756a11c227cc7b93f9f50011d15d5..72693d8b874e464df0608cff0ff5777c2b9117cf 100644 --- a/src/components/profile/profile-edit.tsx +++ b/src/components/profile/profile-edit.tsx @@ -34,6 +34,11 @@ const ProfileEdit = (props: Props) => { try { const { uid } = itemData; const { name, desc, url } = form; + + if (itemData.type === "remote" && !url) { + throw new Error("Remote URL should not be null"); + } + await patchProfile(uid, { uid, name, desc, url }); mutate("getProfiles"); onClose(); diff --git a/src/components/profile/profile-new.tsx b/src/components/profile/profile-new.tsx index 439f121f4c5972a043a677830118aa8d5481c1e3..f58e770256b38152e1cece0319d7e4a2f9445f9d 100644 --- a/src/components/profile/profile-new.tsx +++ b/src/components/profile/profile-new.tsx @@ -40,7 +40,13 @@ const ProfileNew = (props: Props) => { } try { - await createProfile({ ...form }); + const name = form.name || `${form.type} file`; + + if (form.type === "remote" && !form.url) { + throw new Error("Remote URL should not be null"); + } + + await createProfile({ ...form, name }); setForm({ name: "", desc: "", type: "remote", url: "" }); mutate("getProfiles"); onClose();