diff --git a/index.html b/index.html index 592cbe9..846fefc 100644 --- a/index.html +++ b/index.html @@ -1,22 +1,20 @@ + + + + + + + + + + + DTAN.XYZ + - - - - - - - - - - - DTAN.XYZ - - - -
- - - - \ No newline at end of file + +
+ + + diff --git a/src/element/trending.tsx b/src/element/trending.tsx index 41dde3b..613f233 100644 --- a/src/element/trending.tsx +++ b/src/element/trending.tsx @@ -5,7 +5,11 @@ import { TorrentList } from "./torrent-list"; export function LatestTorrents({ author }: { author?: string }) { const sub = new RequestBuilder(`torrents:latest:${author}`); - sub.withFilter().kinds([TorrentKind]).authors(author ? [author] : undefined).limit(100); + sub + .withFilter() + .kinds([TorrentKind]) + .authors(author ? [author] : undefined) + .limit(100); const latest = useRequestBuilder(NoteCollection, sub);