diff --git a/www/app/(app)/browse/page.tsx b/www/app/(app)/browse/page.tsx index 21fa553d..52e80454 100644 --- a/www/app/(app)/browse/page.tsx +++ b/www/app/(app)/browse/page.tsx @@ -128,13 +128,13 @@ export default function TranscriptBrowser() { gap={2} overflowY="auto" minH="100%" - mt={8} > {session?.user?.name ? ( {session?.user?.name}'s Meetings diff --git a/www/app/(app)/layout.tsx b/www/app/(app)/layout.tsx index 89e9c276..f700a31a 100644 --- a/www/app/(app)/layout.tsx +++ b/www/app/(app)/layout.tsx @@ -54,7 +54,7 @@ export default async function AppLayout({ Create @@ -64,7 +64,7 @@ export default async function AppLayout({ Browse @@ -79,7 +79,7 @@ export default async function AppLayout({ Rooms @@ -88,16 +88,6 @@ export default async function AppLayout({ ) : ( <> )} -  ·  - - {privacy ? ( - <> -  ·  - - - ) : ( - <> - )} {requireLogin ? ( <>  ·  diff --git a/www/app/(app)/transcripts/new/page.tsx b/www/app/(app)/transcripts/new/page.tsx index fd3fdcb5..eea51291 100644 --- a/www/app/(app)/transcripts/new/page.tsx +++ b/www/app/(app)/transcripts/new/page.tsx @@ -102,14 +102,15 @@ const TranscriptCreate = () => { flexDir="column" margin="auto" gap={2} - overflowY="auto" maxH="100%" + px={{ base: 5, md: 10 }} + py={5} > void; }; -//always protected const useTranscriptList = (page: number): TranscriptList => { const [response, setResponse] = useState(null); const [loading, setLoading] = useState(true); diff --git a/www/app/(auth)/userInfo.tsx b/www/app/(auth)/userInfo.tsx index a2958371..9fe890b0 100644 --- a/www/app/(auth)/userInfo.tsx +++ b/www/app/(auth)/userInfo.tsx @@ -1,7 +1,6 @@ "use client"; import { useSession, signOut, signIn } from "next-auth/react"; -import { Spinner } from "@chakra-ui/react"; -import Link from "next/link"; +import { Spinner, Link } from "@chakra-ui/react"; export default function UserInfo() { const { status } = useSession(); @@ -11,28 +10,20 @@ export default function UserInfo() { return !sessionReady ? ( ) : !isAuthenticated ? ( - - signIn("authentik")} - className="outline-none" - prefetch={false} - > - Log in - - + signIn("authentik")} + > + Log in + ) : ( - - - signOut({ callbackUrl: "/" })} - className="outline-none" - prefetch={false} - > - Log out - - - + signOut({ callbackUrl: "/" })} + > + Log out + ); } diff --git a/www/app/layout.tsx b/www/app/layout.tsx index a1fa1af2..5afc432c 100644 --- a/www/app/layout.tsx +++ b/www/app/layout.tsx @@ -65,7 +65,7 @@ export default async function RootLayout({ return ( - + "something went really wrong"

}>