diff --git a/src/components/modules/downloads/DownloadsModule.tsx b/src/components/modules/downloads/DownloadsModule.tsx index 3516ab89c..f8f55fd26 100644 --- a/src/components/modules/downloads/DownloadsModule.tsx +++ b/src/components/modules/downloads/DownloadsModule.tsx @@ -1,4 +1,13 @@ -import { Table, Text, Tooltip, Title, Group, Progress, Skeleton } from '@mantine/core'; +import { + Table, + Text, + Tooltip, + Title, + Group, + Progress, + Skeleton, + ScrollArea, +} from '@mantine/core'; import { IconDownload as Download } from '@tabler/icons'; import { useEffect, useState } from 'react'; import axios from 'axios'; @@ -129,12 +138,14 @@ export default function DownloadComponent() { ); }); return ( - + Your torrents - - {ths} - {rows} -
+ + + {ths} + {rows} +
+
); }