Skip to content

Commit

Permalink
examples: update deferred-data
Browse files Browse the repository at this point in the history
  • Loading branch information
tannerlinsley committed Dec 7, 2023
1 parent 7c39bd5 commit 42b83dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/react/deferred-data/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ function RootComponent() {
const indexRoute = new Route({
getParentRoute: () => rootRoute,
path: '/',
}).update({
component: IndexComponent,
})

Expand Down Expand Up @@ -165,7 +166,7 @@ function PostsComponent() {
pending
>
{(match) => {
return <Spinner show={!!match} wait="0" />
return <Spinner show={!!match} wait="delay-0" />
}}
</MatchRoute>
</Link>
Expand Down

0 comments on commit 42b83dd

Please sign in to comment.