@squadbase/vite-server 0.1.3-dev.10 → 0.1.3-dev.12

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.
@@ -250,7 +250,9 @@ Use this tool for all Stripe API interactions: querying charges, customers, invo
250
250
  if (body) {
251
251
  headers["Content-Type"] = "application/x-www-form-urlencoded";
252
252
  requestBody = new URLSearchParams(
253
- Object.entries(body).map(([k, v]) => [k, String(v)])
253
+ Object.entries(body).map(
254
+ ([k, v]) => [k, String(v)]
255
+ )
254
256
  ).toString();
255
257
  }
256
258
  const response = await fetch(url, {