Skip to content

chore(deps): lock file maintenance #3615

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/router/framework/react/guide/code-splitting.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Code splitting and lazy loading is a powerful technique for improving the bundle
TanStack Router separates code into two categories:

- **Critical Route Configuration** - The code that is required to render the current route and kick off the data loading process as early as possible.

- Path Parsing/Serialization
- Search Param Validation
- Loaders, Before Load
Expand Down
3 changes: 0 additions & 3 deletions docs/start/framework/react/reading-writing-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,18 +452,15 @@ With this, our UI should look like this:
Let's break down how the different parts of our application work together:

1. **Server Functions**: These run on the server and handle data operations

- `getJokes`: Reads the jokes from our JSON file
- `addJoke`: Adds a new joke to our JSON file

2. **TanStack Router**: Handles routing and data loading

- The loader function fetches jokes data when the route is accessed
- `useLoaderData` makes this data available in our component
- `router.invalidate()` refreshes the data when we add a new joke

3. **React Components**: Build the UI of our application

- `JokesList`: Displays the list of jokes
- `JokeForm`: Provides a form for adding new jokes

Expand Down
1 change: 0 additions & 1 deletion examples/react/authenticated-routes-firebase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
1. By default, firebase will configure an accepted domain for localhost...update if necessary!
2. Enable Authentication in the Firebase console
3. Add GitHub as an authentication provider:

- Go to **Authentication** > **Sign-in method** > **GitHub**
- Enable GitHub authentication
- You'll need to set up OAuth in your GitHub account:
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router/tests/router.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1034,8 +1034,8 @@ describe('router rendering stability', () => {

await act(() => fireEvent.click(links.foo3bar1))
await check('fooId', { value: '3', mountCount: 1 }, mountMocks)
await check('barId', { value: '1', mountCount: 1 }, mountMocks),
await act(() => fireEvent.click(links.foo3bar2))
;(await check('barId', { value: '1', mountCount: 1 }, mountMocks),
await act(() => fireEvent.click(links.foo3bar2)))
await check('fooId', { value: '3', mountCount: 1 }, mountMocks)
await check('barId', { value: '2', mountCount: 1 }, mountMocks)
})
Expand Down
Loading
Loading