diff --git a/src/components/interaction-panel/chat.tsx b/src/components/interaction-panel/chat.tsx index b386a04..28fe54c 100644 --- a/src/components/interaction-panel/chat.tsx +++ b/src/components/interaction-panel/chat.tsx @@ -3,7 +3,12 @@ import { useRef, useState } from "react"; import Arrow from "@/icons/arrow.svg?react"; import Paperclip from "@/icons/paperclip.svg?react"; import Clock from "@/icons/clock.svg?react"; + import { cn } from "@/lib/utils"; +import { useNavigate } from "@tanstack/react-router"; +import { useAccountStore } from "@/contexts/AccountContext"; +import { Button } from "../ui/button"; +import { useToast } from "@/lib/hooks/use-toast"; const Chat = observer(() => { return ( @@ -14,6 +19,10 @@ const Chat = observer(() => { }); const WelcomePanel = () => { + const navigate = useNavigate(); + const { userId } = useAccountStore(); + const { toast } = useToast(); + return (
- To solve problems, contact us
- via{" "}
-
- Discord
-
- {" "}
- and send the error text
-
Please try again later
++ If the problem persists, copy the error message below and contact our + support team +
+ + +