diff --git a/playground/nextjs-app-router/components/DemoOptions.tsx b/playground/nextjs-app-router/components/DemoOptions.tsx index dfbfc5fdd7..3ac610ec64 100644 --- a/playground/nextjs-app-router/components/DemoOptions.tsx +++ b/playground/nextjs-app-router/components/DemoOptions.tsx @@ -62,16 +62,6 @@ const COMPONENT_CONFIG: Partial< ], }; -export function getComponentQueryParams( - component: OnchainKitComponent, -): string { - const options = COMPONENT_CONFIG[component] || []; - const paramKeys = [...COMMON_OPTIONS, ...options].map((Component) => - Component.name.toLowerCase(), - ); - return paramKeys.join('&'); -} - export default function DemoOptions({ component, }: {