fix: polish goal renderers for release

- Remove limit parameter from useTimeline (use whatever relays send)
- Add more spacing between "Support Grimoire" header and progress bar
This commit is contained in:
Claude
2026-01-20 16:20:50 +00:00
parent 50183099a8
commit a75b822dcb
3 changed files with 1 additions and 3 deletions

View File

@@ -63,7 +63,6 @@ export function GoalDetailRenderer({ event }: { event: NostrEvent }) {
`goal-zaps-detail-${event.id}`,
zapFilter,
relays,
{ limit: 1000 },
);
// Calculate total raised and build contributor list

View File

@@ -57,7 +57,6 @@ export function GoalRenderer({ event }: BaseEventProps) {
`goal-zaps-${event.id}`,
zapFilter,
relays,
{ limit: 1000 },
);
// Calculate total raised

View File

@@ -430,7 +430,7 @@ export default function UserMenu() {
className="px-2 py-2 cursor-crosshair hover:bg-accent/50 transition-colors"
onClick={openDonate}
>
<div className="flex items-center gap-2 mb-1.5">
<div className="flex items-center gap-2 mb-3">
<Zap className="size-4 text-yellow-500" />
<span className="text-sm font-medium">Support Grimoire</span>
</div>