zudoku 0.65.1 → 0.65.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.
@@ -3,7 +3,7 @@ import "lucide-react";
3
3
  import "./chunk-PVWAREVJ-BMhpCH5D.js";
4
4
  import "./ui/Button.js";
5
5
  import "./ZudokuContext-BUZ5hkWB.js";
6
- import { y as e, U as n, z as s } from "./index-I4zC7Yht.js";
6
+ import { y as e, U as n, z as s } from "./index-C_-XS4lp.js";
7
7
  export {
8
8
  e as GetNavigationOperationsQuery,
9
9
  n as UNTAGGED_PATH,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.65.1",
3
+ "version": "0.65.2",
4
4
  "type": "module",
5
5
  "homepage": "https://zudoku.dev",
6
6
  "repository": {
@@ -227,7 +227,7 @@ export const Playground = ({
227
227
 
228
228
  switch (data.bodyMode) {
229
229
  case "file":
230
- body = data.file ?? undefined;
230
+ body = data.file || undefined;
231
231
  headers.delete("Content-Type");
232
232
  break;
233
233
  case "multipart": {
@@ -241,7 +241,7 @@ export const Playground = ({
241
241
  break;
242
242
  }
243
243
  default:
244
- body = data.body ?? undefined;
244
+ body = data.body || undefined;
245
245
  break;
246
246
  }
247
247