fix booboo
This commit is contained in:
10
app/dashboard/chats/layout.tsx
Normal file
10
app/dashboard/chats/layout.tsx
Normal 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}</>;
|
||||||
|
}
|
||||||
@@ -5,12 +5,6 @@ import { useRouter } from "next/navigation";
|
|||||||
import ChatTable from "@/components/dashboard/ChatTable";
|
import ChatTable from "@/components/dashboard/ChatTable";
|
||||||
import Dashboard from "@/components/dashboard/dashboard";
|
import Dashboard from "@/components/dashboard/dashboard";
|
||||||
import { MessageCircle } from "lucide-react";
|
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() {
|
export default function ChatsPage() {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|||||||
Reference in New Issue
Block a user