@movvjs/svelte-schedule-view 0.4.19 → 0.4.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -179,7 +179,6 @@ async function edit() {
179
179
  ...preview,
180
180
  emailList: mergedEmailList
181
181
  };
182
- console.log(">>>>>>>>>>>>", $copiedBooking.emailList);
183
182
  $originalBooking = cloneDeep($copiedBooking);
184
183
  $isEdit = true;
185
184
  } catch (e) {
@@ -207,7 +206,7 @@ async function save() {
207
206
  throw new Error($t("error.pleaseEnterTelNumber"));
208
207
  }
209
208
  if (hasDuplicateEmail($copiedBooking.emailList))
210
- throw new Error("\uC911\uBCF5\uB41C \uC774\uBA54\uC77C\uC774 \uC788\uC2B5\uB2C8\uB2E4.");
209
+ throw new Error("error.dupliEmail");
211
210
  const cleaned = $copiedBooking.emailList.map((e) => e?.trim()).filter(Boolean);
212
211
  $copiedBooking.email = cleaned[0] ?? "";
213
212
  $copiedBooking.emailList = cleaned.slice(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movvjs/svelte-schedule-view",
3
- "version": "0.4.19",
3
+ "version": "0.4.20",
4
4
  "type": "module",
5
5
  "license": "ISC",
6
6
  "author": {