diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/universal-bridge/components/code-examples.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/universal-bridge/components/code-examples.tsx index 86793a04996..396a6c0d8a2 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/universal-bridge/components/code-examples.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/universal-bridge/components/code-examples.tsx @@ -1,13 +1,20 @@ export const embedCode = (clientId: string) => `\ import { createThirdwebClient } from "thirdweb"; -import { PayEmbed } from "thirdweb/react"; +import { BuyWidget } from "thirdweb/react"; +import { ethereum } from "thirdweb/chains"; const client = createThirdwebClient({ clientId: "${clientId}", }); export default function App() { - return ; + return ( + + ); }`; export const sdkCode = (clientId: string) => `\