Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import localFont from "next/font/local";
import "./globals.css";
import { SidebarProvider } from "@/context/sidebar-context";
import { ThemeProvider } from "@/context/theme-context";
import { WalletProvider } from "@/context/wallet-context";
import { WalletProvider, WatchlistProvider } from "@/context/wallet-context";
import { OfflineBanner } from "@/components/common/offline-banner";
import { CookieConsentBanner } from "@/components/common/cookie-consent-banner";
import { Toaster } from "@/components/ui/toaster";
Expand Down Expand Up @@ -186,7 +186,9 @@ export default function RootLayout({
<CookieConsentBanner />
<ThemeProvider>
<WalletProvider>
<SidebarProvider>{children}</SidebarProvider>
<WatchlistProvider>
<SidebarProvider>{children}</SidebarProvider>
</WatchlistProvider>
</WalletProvider>
<Toaster />
</ThemeProvider>
Expand Down
3 changes: 3 additions & 0 deletions components/dashboard/dashboard-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import DashboardNavbar from "@/components/dashboard/dashboard-navbar";
import AccountOverview from "@/components/dashboard/account-overview";
import { QuickActions } from "@/components/dashboard/quick-actions";
import QuickTransfer from "@/components/dashboard/quick-transfer";
import { WatchlistPanel } from "@/components/dashboard/watchlist-panel";
import dynamic from "next/dynamic";
import Skeleton from "@/components/ui/skeleton";
import { EmptyState } from "@/components/ui/empty-state";
Expand Down Expand Up @@ -822,6 +823,8 @@ export default function Dashboard() {
<AnalyticsInsights />
</div>

<WatchlistPanel />

<div ref={clientAnalyticsRef}>
<ClientAnalyticsView
isLoading={isLoading}
Expand Down
Loading