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

@ -45,7 +45,7 @@ export default function RootPage() {
</div>
</div></> : null}
{followHints()}
<Timeline key={tab} subject={timelineSubect} postsOnly={tab === RootTab.Posts} method={"TIME_RANGE"} />
<Timeline key={tab} subject={timelineSubect} postsOnly={tab === RootTab.Posts} method={"TIME_RANGE"} window={tab === RootTab.Global ? 60 : undefined}/>
<NoteCreator replyTo={undefined} autoFocus={true} show={show} setShow={setShow} />
</>
);