chore: reduce window size for global tab to 1min

This commit is contained in:
2023-02-03 16:48:51 +00:00
parent 2858deb462
commit eb002e065c
3 changed files with 9 additions and 6 deletions

View File

@ -16,16 +16,18 @@ export interface TimelineProps {
postsOnly: boolean,
subject: TimelineSubject,
method: "TIME_RANGE" | "LIMIT_UNTIL"
ignoreModeration?: boolean
ignoreModeration?: boolean,
window?: number
}
/**
* A list of notes by pubkeys
*/
export default function Timeline({ subject, postsOnly = false, method, ignoreModeration = false }: TimelineProps) {
export default function Timeline({ subject, postsOnly = false, method, ignoreModeration = false, window }: TimelineProps) {
const { muted, isMuted } = useModeration();
const { main, related, latest, parent, loadMore, showLatest } = useTimelineFeed(subject, {
method
method,
window: window
});
const filterPosts = useCallback((nts: TaggedRawEvent[]) => {