diff --git a/src/element/Timeline.js b/src/element/Timeline.js index 0052bcdf..05be16d8 100644 --- a/src/element/Timeline.js +++ b/src/element/Timeline.js @@ -5,10 +5,8 @@ import Note from "./Note"; /** * A list of notes by pubkeys */ -export default function Timeline(props) { - const pubkeys = props.pubkeys; - const global = props.global; - const feed = useTimelineFeed(pubkeys, global ?? false); +export default function Timeline({ global, pubkeys }) { + const feed = useTimelineFeed(pubkeys, global); function reaction(id, kind = EventKind.Reaction) { return feed?.others?.filter(a => a.kind === kind && a.tags.some(b => b[0] === "e" && b[1] === id)); diff --git a/src/pages/Root.js b/src/pages/Root.js index fb927e6c..8361a800 100644 --- a/src/pages/Root.js +++ b/src/pages/Root.js @@ -35,7 +35,7 @@ export default function RootPage() { : null} {followHints()} - + ); } \ No newline at end of file