diff --git a/apps/dashboard/src/@/components/chat/CustomChatButton.tsx b/apps/dashboard/src/@/components/chat/CustomChatButton.tsx index e1a712cc24a..ad1e2dedda4 100644 --- a/apps/dashboard/src/@/components/chat/CustomChatButton.tsx +++ b/apps/dashboard/src/@/components/chat/CustomChatButton.tsx @@ -1,6 +1,6 @@ "use client"; -import { MessageCircleIcon, XIcon } from "lucide-react"; +import { CircleQuestionMarkIcon, XIcon } from "lucide-react"; import { useSelectedLayoutSegments } from "next/navigation"; import { useCallback, useRef, useState } from "react"; import { createThirdwebClient } from "thirdweb"; @@ -16,7 +16,6 @@ const client = createThirdwebClient({ }); export function CustomChatButton(props: { - label: string; examplePrompts: string[]; authToken: string; team: Team; @@ -39,21 +38,25 @@ export function CustomChatButton(props: { <> {/* Inline Button (not floating) */} {/* Popup/Modal */}
- - {props.label} + Need help?
); diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/layout.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/layout.tsx index c9db26ac0a5..7f1fb8d3665 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/layout.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/layout.tsx @@ -77,15 +77,12 @@ export default async function ProjectLayout(props: { {props.children} -
- -
+ );