@fctc/interface-logic 5.4.1 → 5.4.2

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.
@@ -4677,8 +4677,7 @@ var updatePaymentMethodSupabaseService = () => {
4677
4677
  }
4678
4678
  const { id, ...rest } = values;
4679
4679
  const updateData = chunkJDXUTKMX_js.cleanObject({
4680
- ...rest,
4681
- updated_at: (/* @__PURE__ */ new Date()).toISOString()
4680
+ ...rest
4682
4681
  });
4683
4682
  try {
4684
4683
  const { data, error } = await supabase.from("payment_methods" /* PAYMENT_METHODS */).update(updateData).eq("id", id).select("id, name").single();
@@ -4675,8 +4675,7 @@ var updatePaymentMethodSupabaseService = () => {
4675
4675
  }
4676
4676
  const { id, ...rest } = values;
4677
4677
  const updateData = cleanObject({
4678
- ...rest,
4679
- updated_at: (/* @__PURE__ */ new Date()).toISOString()
4678
+ ...rest
4680
4679
  });
4681
4680
  try {
4682
4681
  const { data, error } = await supabase.from("payment_methods" /* PAYMENT_METHODS */).update(updateData).eq("id", id).select("id, name").single();