improve diff filters
fix tests expander/compressor filter mangler
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { useEffect, useState } from "react";
|
||||
import { RawEvent, TaggedRawEvent } from "System";
|
||||
import { NostrEvent, TaggedRawEvent } from "System";
|
||||
import { FormattedMessage } from "react-intl";
|
||||
|
||||
import PageSpinner from "Element/PageSpinner";
|
||||
@ -7,7 +7,7 @@ import Note from "Element/Note";
|
||||
import NostrBandApi from "External/NostrBand";
|
||||
|
||||
export default function TrendingNotes() {
|
||||
const [posts, setPosts] = useState<Array<RawEvent>>();
|
||||
const [posts, setPosts] = useState<Array<NostrEvent>>();
|
||||
|
||||
async function loadTrendingNotes() {
|
||||
const api = new NostrBandApi();
|
||||
|
Reference in New Issue
Block a user