chore: Update translations

This commit is contained in:
2024-03-05 13:08:41 +00:00
parent afee63061a
commit 905015f45d
4 changed files with 23 additions and 19 deletions

View File

@ -18,7 +18,7 @@ export function useLiveStreams(feed: Array<TaggedNostrEvent>, oldest?: number) {
const feedSorted = useMemo(() => {
if (feed) {
return feed
.filter(a => a.created_at > (oldest ?? (unixNow() - 7 * DAY)))
.filter(a => a.created_at > (oldest ?? unixNow() - 7 * DAY))
.filter(a => !import.meta.env.VITE_SINGLE_PUBLISHER || import.meta.env.VITE_SINGLE_PUBLISHER === getHost(a));
}
return [];