Skip to content

Commit c3a42e0

Browse files
Version Packages (#5247)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2040ca0 commit c3a42e0

File tree

12 files changed

+246
-455
lines changed

12 files changed

+246
-455
lines changed

.changeset/smart-donkeys-jam.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/dashboard/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@
6969
"ipaddr.js": "^2.2.0",
7070
"lottie-react": "^2.4.0",
7171
"lucide-react": "0.454.0",
72-
"next-plausible": "^3.12.3",
7372
"next": "15.0.2",
73+
"next-plausible": "^3.12.3",
7474
"next-seo": "^6.5.0",
75-
"next-themes": "^0.3.0",
75+
"next-themes": "^0.4.3",
7676
"nextjs-toploader": "^1.6.12",
7777
"papaparse": "^5.4.1",
7878
"pluralize": "^8.0.0",
@@ -83,8 +83,8 @@
8383
"react": "19.0.0-rc-69d4b800-20241021",
8484
"react-children-utilities": "^2.10.0",
8585
"react-day-picker": "^8.10.1",
86-
"react-dropzone": "^14.3.5",
8786
"react-dom": "19.0.0-rc-69d4b800-20241021",
87+
"react-dropzone": "^14.3.5",
8888
"react-error-boundary": "^4.1.2",
8989
"react-hook-form": "7.52.0",
9090
"react-markdown": "^9.0.1",

apps/dashboard/src/@/components/theme-provider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { ThemeProvider as NextThemesProvider, useTheme } from "next-themes";
4-
import type { ThemeProviderProps } from "next-themes/dist/types";
4+
import type { ThemeProviderProps } from "next-themes";
55
import { useEffect } from "react";
66

77
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {

apps/dashboard/src/components/hackathon/Judges.tsx

Lines changed: 0 additions & 75 deletions
This file was deleted.

apps/dashboard/src/components/hackathon/JudgesEarn.tsx

Lines changed: 0 additions & 56 deletions
This file was deleted.

apps/dashboard/src/components/product-pages/common/GameCard.tsx

Lines changed: 0 additions & 110 deletions
This file was deleted.

apps/dashboard/src/data/analytics/fetch-api-server.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ export async function fetchApiServer(
77
input: string | URL,
88
init?: RequestInit,
99
): Promise<Response> {
10-
const activeAccount = cookies().get(COOKIE_ACTIVE_ACCOUNT)?.value;
10+
const cookieManager = await cookies();
11+
const activeAccount = cookieManager.get(COOKIE_ACTIVE_ACCOUNT)?.value;
1112
const authToken = activeAccount
12-
? cookies().get(COOKIE_PREFIX_TOKEN + getAddress(activeAccount))?.value
13+
? cookieManager.get(COOKIE_PREFIX_TOKEN + getAddress(activeAccount))?.value
1314
: null;
1415

1516
const [pathname, searchParams] = input.toString().split("?");

apps/playground-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"clsx": "^2.1.1",
3333
"lucide-react": "0.454.0",
3434
"next": "15.0.2",
35-
"next-themes": "^0.3.0",
35+
"next-themes": "^0.4.3",
3636
"prettier": "^3.3.2",
3737
"react": "19.0.0-rc-69d4b800-20241021",
3838
"react-dom": "19.0.0-rc-69d4b800-20241021",

apps/playground-web/src/app/providers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { ThemeProvider as NextThemesProvider } from "next-themes";
4-
import type { ThemeProviderProps } from "next-themes/dist/types";
4+
import type { ThemeProviderProps } from "next-themes";
55
import type * as React from "react";
66

77
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";

apps/wallet-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"cmdk": "^1.0.4",
2424
"lucide-react": "0.454.0",
2525
"next": "15.0.2",
26-
"next-themes": "^0.3.0",
26+
"next-themes": "^0.4.3",
2727
"react": "19.0.0-rc-69d4b800-20241021",
2828
"react-dom": "19.0.0-rc-69d4b800-20241021",
2929
"react-hook-form": "7.52.0",

0 commit comments

Comments
 (0)