fix: fix global layout overscroll + link colors (#404)

This commit is contained in:
2024-09-04 09:26:23 -06:00
committed by GitHub
parent c80d59e23f
commit 6aab6ac3fa
6 changed files with 23 additions and 42 deletions

View File

@@ -102,14 +102,15 @@ const TranscriptCreate = () => {
flexDir="column"
margin="auto"
gap={2}
overflowY="auto"
maxH="100%"
px={{ base: 5, md: 10 }}
py={5}
>
<Flex
flexDir={{ base: "column", md: "row" }}
justify="space-between"
align="center"
gap={4}
gap={8}
>
<Flex
flexDir="column"

View File

@@ -10,7 +10,6 @@ type TranscriptList = {
refetch: () => void;
};
//always protected
const useTranscriptList = (page: number): TranscriptList => {
const [response, setResponse] = useState<Page_GetTranscript_ | null>(null);
const [loading, setLoading] = useState<boolean>(true);