Skip to content

Commit 9df2e4b

Browse files
committed
Bump dependencies and format prefetch call
Update key packages: Next -> 16.1.0, React/React-DOM -> 19.2.3, @trpc/* -> 11.8.1, plus various radix-ui, tanstack, and devDependency minor updates. Reformat trpc.prefetchQuery call in agents page for readability.
1 parent db6b103 commit 9df2e4b

3 files changed

Lines changed: 52 additions & 52 deletions

File tree

bun.lock

Lines changed: 42 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
"@radix-ui/react-tooltip": "^1.2.8",
4848
"@tanstack/react-query": "^5.90.12",
4949
"@tanstack/react-table": "^8.21.3",
50-
"@trpc/client": "^11.8.0",
51-
"@trpc/server": "^11.8.0",
52-
"@trpc/tanstack-react-query": "^11.8.0",
50+
"@trpc/client": "^11.8.1",
51+
"@trpc/server": "^11.8.1",
52+
"@trpc/tanstack-react-query": "^11.8.1",
5353
"babel-plugin-react-compiler": "^1.0.0",
5454
"better-auth": "^1.4.7",
5555
"class-variance-authority": "^0.7.1",
@@ -63,12 +63,12 @@
6363
"input-otp": "^1.4.2",
6464
"lucide-react": "^0.546.0",
6565
"nanoid": "^5.1.6",
66-
"next": "16.0.0",
66+
"next": "^16.1.0",
6767
"next-themes": "^0.4.6",
6868
"nuqs": "^2.8.5",
69-
"react": "19.2.0",
69+
"react": "^19.2.3",
7070
"react-day-picker": "^9.13.0",
71-
"react-dom": "19.2.0",
71+
"react-dom": "^19.2.3",
7272
"react-error-boundary": "^6.0.0",
7373
"react-hook-form": "^7.69.0",
7474
"react-icons": "^5.5.0",
@@ -83,7 +83,7 @@
8383
"devDependencies": {
8484
"@tailwindcss/postcss": "^4.1.18",
8585
"@types/node": "^20.19.27",
86-
"@types/react": "19.2.2",
86+
"@types/react": "^19.2.2",
8787
"@types/react-dom": "19.2.2",
8888
"drizzle-kit": "^0.31.8",
8989
"eslint": "^9.39.2",

src/app/(dashboard)/agents/page.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ const AgentsData = async ({ searchParams }: Props) => {
2727

2828
if (!session) redirect("/sign-in");
2929
const queryClient = getQueryClient();
30-
void queryClient.prefetchQuery(trpc.agents.getMany.queryOptions({ ...filters }));
30+
void queryClient.prefetchQuery(
31+
trpc.agents.getMany.queryOptions({ ...filters }),
32+
);
3133

3234
return (
3335
<>

0 commit comments

Comments
 (0)