Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Apr 21, 2023
1 parent 9d81bf6 commit 3a7a7d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/hooks/use-submit.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ You may also choose which type of serialization you'd like via the `encType` opt

```tsx
let obj = { key: "value" };
submit(obj, { encType: 'application/x-www-form-urlencoded' }); // -> request.formData()
submit(obj, {
encType: "application/x-www-form-urlencoded",
}); // -> request.formData()
```

```tsx
Expand Down

0 comments on commit 3a7a7d9

Please sign in to comment.