fix booboo

This commit is contained in:
NotII
2025-03-08 05:37:36 +00:00
parent 00a8e49b28
commit 02d605dd59
2 changed files with 10 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Customer Chats | Ember Market",
description: "Manage your customer conversations",
};
export default function ChatsLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}

View File

@@ -5,12 +5,6 @@ import { useRouter } from "next/navigation";
import ChatTable from "@/components/dashboard/ChatTable";
import Dashboard from "@/components/dashboard/dashboard";
import { MessageCircle } from "lucide-react";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Customer Chats | Ember Market",
description: "Manage your customer conversations",
};
export default function ChatsPage() {
const router = useRouter();