@@ -34,7 +38,6 @@ export default function AccountCard({ name, logo, rgb, address }: Props) {
{truncate(address, 19)}
- } />
)
diff --git a/wallets/react-wallet-v2/src/components/Layout.tsx b/wallets/react-wallet-v2/src/components/Layout.tsx
index 934d489..d879daf 100644
--- a/wallets/react-wallet-v2/src/components/Layout.tsx
+++ b/wallets/react-wallet-v2/src/components/Layout.tsx
@@ -1,4 +1,5 @@
-import { Card, Container, Divider, Loading } from '@nextui-org/react'
+import Navigation from '@/components/Navigation'
+import { Card, Container, Loading } from '@nextui-org/react'
import { Fragment, ReactNode } from 'react'
/**
@@ -12,30 +13,51 @@ interface Props {
/**
* Container
*/
-export default function GlobalLayout({ children, initialized }: Props) {
+export default function Layout({ children, initialized }: Props) {
return (