Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 10, 2024
1 parent dde110d commit 3755fd6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions e2e/start/basic/app/routes/deferred.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ const slowServerFn = createServerFn({ method: 'GET' })
export const Route = createFileRoute('/deferred')({
loader: async () => {
return {
deferredStuff:
new Promise<string>((r) =>
setTimeout(() => r('Hello deferred!'), 2000),
),
deferredStuff: new Promise<string>((r) =>
setTimeout(() => r('Hello deferred!'), 2000),
),
deferredPerson: slowServerFn({ data: { name: 'Tanner Linsley' } }),
person: await personServerFn({ data: { name: 'John Doe' } }),
}
Expand Down

0 comments on commit 3755fd6

Please sign in to comment.