diff --git a/apps/builder/app/layout.tsx b/apps/builder/app/layout.tsx index 1f260ce28d..a60b796d84 100644 --- a/apps/builder/app/layout.tsx +++ b/apps/builder/app/layout.tsx @@ -39,15 +39,14 @@ export default async function RootLayout({ children }: Readonly<{ children: Reac const cookies = headers().get('cookie') return ( - - - - - - {children} - - - + + + + + {children} + + + ) } diff --git a/apps/builder/components/configuration-sections/section-wallet-features.tsx b/apps/builder/components/configuration-sections/section-wallet-features.tsx index 416680d2c1..849363dd6f 100644 --- a/apps/builder/components/configuration-sections/section-wallet-features.tsx +++ b/apps/builder/components/configuration-sections/section-wallet-features.tsx @@ -2,14 +2,8 @@ import { UniqueIdentifier } from '@dnd-kit/core' import { useAppKitContext } from '@/hooks/use-appkit' import { WalletFeatureName } from '@/lib/types' import { ConstantsUtil, WalletFeature } from '@reown/appkit-core' -import dynamic from 'next/dynamic' import { urlStateUtils } from '@/lib/url-state' - -const SortableWalletFeatureList = dynamic( - () => - import('@/components/sortable-list-wallet-features').then(mod => mod.SortableWalletFeatureList), - { ssr: false } -) +import { SortableWalletFeatureList } from '@/components/sortable-list-wallet-features' const defaultWalletFeaturesOrder = ['onramp', 'swaps', 'receive', 'send'] diff --git a/apps/builder/components/preview-content.tsx b/apps/builder/components/preview-content.tsx index b54863967d..aa71aa0ea8 100644 --- a/apps/builder/components/preview-content.tsx +++ b/apps/builder/components/preview-content.tsx @@ -2,7 +2,6 @@ import { Button } from '@/components/ui/button' import { toast } from 'sonner' -import Image from 'next/image' import { Link1Icon, ResetIcon } from '@radix-ui/react-icons' import { useAppKitContext } from '@/hooks/use-appkit'