fix: Increase event limit from 20 to 100 in TagFeed and TagQuickViewFeed components

This commit is contained in:
2025-04-25 23:38:15 +02:00
parent 3250372467
commit f81a81e680
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ const TagFeed: React.FC<TagFeedProps> = ({ tag }) => {
filter: {
// since: dateToUnix(now.current), // all new events from now
// since: 0,
limit: 20,
limit: 100,
kinds: [20],
"#t": [tag],
},

View File

@@ -14,7 +14,7 @@ const TagQuickViewFeed: React.FC<TagQuickViewFeedProps> = ({ tag }) => {
filter: {
// since: dateToUnix(now.current), // all new events from now
// since: 0,
limit: 20,
limit: 100,
kinds: [20],
"#t": [tag],
},