diff --git a/apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/BuyFundsSection.tsx b/apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/BuyFundsSection.tsx index 5943195dcc0..97eae2dd01d 100644 --- a/apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/BuyFundsSection.tsx +++ b/apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/BuyFundsSection.tsx @@ -1,12 +1,15 @@ "use client"; +import { useTheme } from "next-themes"; import { defineChain, type ThirdwebClient } from "thirdweb"; import type { ChainMetadata } from "thirdweb/chains"; import { BuyWidget } from "thirdweb/react"; +import { getSDKTheme } from "@/utils/sdk-component-theme"; export function BuyFundsSection(props: { chain: ChainMetadata; client: ThirdwebClient; }) { + const { theme } = useTheme(); return (
);