Skip to content

Commit 0ea6b71

Browse files
chore(router): fix future flags table (#10358)
1 parent dbc9ba3 commit 0ea6b71

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/guides/api-development-strategy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ The lifecycle is thus either:
5151

5252
Here's the current future flags in React Router v6 today:
5353

54-
| Flag | Description |
54+
| Flag | Description |
55+
| ------------------------ | --------------------------------------------------------------------- |
5556
| `v7_normalizeFormMethod` | Normalize `useNavigation().formMethod` to be an uppercase HTTP Method |
5657

5758
[future-flags-blog-post]: https://remix.run/blog/future-flags

packages/router/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,10 @@ By default, active loaders will revalidate after any navigation or fetcher mutat
122122

123123
We use _Future Flags_ in the router to help us introduce breaking changes in an opt-in fashion ahead of major releases. Please check out the [blog post][future-flags-post] and [React Router Docs][api-development-strategy] for more information on this process. The currently available future flags in `@remix-run/router` are:
124124

125-
| Flag | Description |
126-
| `v7_normalizeFormMethod` | Normalize `useNavigation().formMethod` to be an uppercase HTTP Method |
127-
| `v7_prependBasename` | Prepend the `basename` to incoming `router.navigate`/`router.fetch` paths |
125+
| Flag | Description |
126+
| ------------------------ | ------------------------------------------------------------------------- |
127+
| `v7_normalizeFormMethod` | Normalize `useNavigation().formMethod` to be an uppercase HTTP Method |
128+
| `v7_prependBasename` | Prepend the `basename` to incoming `router.navigate`/`router.fetch` paths |
128129

129130
[react-router]: https://reactrouter.com
130131
[remix]: https://remix.run

0 commit comments

Comments
 (0)