diff --git a/apps/dashboard/src/app/nebula-app/(app)/chat/history/ChatHistoryPage.tsx b/apps/dashboard/src/app/nebula-app/(app)/chat/history/ChatHistoryPage.tsx index 2a31f27ea98..7c6969d4674 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/chat/history/ChatHistoryPage.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/chat/history/ChatHistoryPage.tsx @@ -81,12 +81,13 @@ export function ChatHistoryPageUI(props: { {filteredSessions.length > 0 && ( {filteredSessions.length > 0 && ( -
+
{filteredSessions.map((session) => ( - - + Alpha
-
-
-
+
+ +
+ + + +
+ {sessionsToShow.length > 0 && (
-

+

Recent Chats

{sessionsToShow.map((session) => { @@ -70,13 +80,6 @@ export function ChatSidebar(props: { /> ); })} - - - View All -
)} @@ -89,3 +92,23 @@ export function ChatSidebar(props: {
); } + +function SidebarIconLink(props: { + icon: React.FC<{ className?: string }>; + label: string; + target?: "_blank"; + href: string; +}) { + return ( + + ); +} diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/ContextFilters.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/ContextFilters.tsx index d2f9852fbfe..841c967497a 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/ContextFilters.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/ContextFilters.tsx @@ -1,5 +1,6 @@ "use client"; +import { MultiNetworkSelector } from "@/components/blocks/NetworkSelectors"; import { Spinner } from "@/components/ui/Spinner/Spinner"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; @@ -30,7 +31,6 @@ import { useForm } from "react-hook-form"; import { toast } from "sonner"; import { isAddress } from "thirdweb"; import { z } from "zod"; -import { MultiNetworkSelector } from "../../../../@/components/blocks/NetworkSelectors"; import type { ContextFilters } from "../api/chat"; export default function ContextFiltersButton(props: { @@ -55,14 +55,14 @@ export default function ContextFiltersButton(props: { Context Filters
{chainIds && chainIds.length > 0 && ( - + Chain {chainIds.join(", ")} )} {contractAddresses && contractAddresses.length > 0 && ( - + Contract {contractAddresses @@ -73,7 +73,7 @@ export default function ContextFiltersButton(props: { )} {walletAddresses && walletAddresses.length > 0 && ( - + Wallet {walletAddresses diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/NebulaMobileNav.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/NebulaMobileNav.tsx index 1ecbdaa02cf..cc65bd26596 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/NebulaMobileNav.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/NebulaMobileNav.tsx @@ -61,11 +61,7 @@ export function MobileNav(props: {
-