mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* fix: styling of tables, need to add pushing message to top * message gets sent with some offset space * fixed scroll * updated styles, scrolling still messed up * fixed rendering of tables, code. added copy, fixed error for settings sync, added additional formatting and styles to chat * acknowledged PR comments --------- Co-authored-by: Adam Gough <adamgough@Adams-MacBook-Pro.local>
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import ChatClient from './chat-client'
|
|
|
|
export default async function ChatPage({ params }: { params: Promise<{ subdomain: string }> }) {
|
|
const { subdomain } = await params
|
|
return <ChatClient subdomain={subdomain} />
|
|
}
|