mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-25 14:27:57 +02:00
fix: Increase event limit from 20 to 100 in TagFeed and TagQuickViewFeed components
This commit is contained in:
@@ -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],
|
||||
},
|
||||
|
||||
@@ -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],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user