@t2000/sdk 10.30.1 → 10.30.3

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.
package/dist/browser.cjs CHANGED
@@ -1526,7 +1526,6 @@ function jobActionsFor(job, caller, nowMs = Date.now()) {
1526
1526
  const actions = [];
1527
1527
  if (job.state === "funded") {
1528
1528
  if (isSeller && nowMs <= job.deliverByMs) actions.push("deliver");
1529
- if (isBuyer) actions.push("release");
1530
1529
  if (nowMs > job.deliverByMs) actions.push("refund");
1531
1530
  } else if (job.state === "delivered") {
1532
1531
  const windowClosesMs = (job.deliveredAtMs ?? 0) + job.reviewWindowMs;