Skip to content

Commit

Permalink
error solved
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanptm committed Sep 24, 2024
1 parent 756ba9d commit 21b544b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions client/app/(patient)/chats/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { ReactNode } from "react"

export const metadata: Metadata = {
title: 'Chat',
description: 'Manage your chats seamlessly with AVM Ayurvedic',
keywords: 'chat, messages, AVM Ayurvedic, healthcare',
description: 'Chat with your doctor, manage your chats seamlessly with AVM Ayurvedic',
keywords: ['chat', 'messages', 'AVM Ayurvedic', 'healthcare', 'doctor', 'patient', 'chat with doctor', 'chat with patient'],
};
const layout = ({ chatList, chat }: { chatList: ReactNode; chat: ReactNode }) => {
return <ChatLayout chat={chat} chatList={chatList} isPatient={true} />
Expand Down
6 changes: 3 additions & 3 deletions client/app/doctor/chats/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { ReactNode } from "react"

export const metadata: Metadata = {
title: 'Chat',
description: 'Manage your chats seamlessly with AVM Ayurvedic',
keywords: 'chat, messages, AVM Ayurvedic, healthcare',
description: 'Chat with your patients, manage your chats seamlessly with AVM Ayurvedic',
keywords: ['chat', 'messages', 'AVM Ayurvedic', 'healthcare', 'doctor', 'patient'],
};
const layout = ({ chatList, chat }: { chatList: ReactNode; chat: ReactNode }) => {
return <ChatLayout chat={chat} chatList={chatList} />
return <ChatLayout chat={chat} chatList={chatList} isPatient={false} />
}

export default layout

1 comment on commit 21b544b

@vercel
Copy link

@vercel vercel bot commented on 21b544b Sep 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.