Run prettier

This commit is contained in:
Jared Palmer 2023-06-02 15:33:48 -04:00
parent aa83a871dd
commit 417f69e0f1
34 changed files with 530 additions and 523 deletions

View file

@ -1,12 +1,12 @@
import { Chat } from "./chat";
import { Sidebar } from "./sidebar";
import { auth } from "@/auth";
import { Chat } from './chat'
import { Sidebar } from './sidebar'
import { auth } from '@/auth'
export const runtime = "edge";
export const preferredRegion = "home";
export const runtime = 'edge'
export const preferredRegion = 'home'
export default async function IndexPage() {
const session = await auth();
const session = await auth()
return (
<div className="relative flex h-full w-full overflow-hidden">
<Sidebar session={session} newChat />
@ -14,5 +14,5 @@ export default async function IndexPage() {
<Chat />
</div>
</div>
);
)
}