Fix global tab

This commit is contained in:
2023-06-19 10:51:42 +01:00
parent 1e5b573045
commit 9f00157bdc
4 changed files with 10 additions and 19 deletions

View File

@ -22,7 +22,6 @@ export interface TimelineProps {
method: "TIME_RANGE" | "LIMIT_UNTIL";
ignoreModeration?: boolean;
window?: number;
relay?: string;
now?: number;
loadMore?: boolean;
noSort?: boolean;
@ -36,7 +35,6 @@ const Timeline = (props: TimelineProps) => {
return {
method: props.method,
window: props.window,
relay: props.relay,
now: props.now,
};
}, [props]);