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