Update the Page layout to match the design - #997
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 321504c3dc
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| const content = entry.content as { authors?: AuthorProfile[] } | undefined; | ||
| if (Array.isArray(content?.authors) && content.authors.length > 0) { | ||
| return content.authors; |
There was a problem hiding this comment.
Avoid falling back to contributor authors
When a PURCHASE or USDFUNDRAISECONTRIBUTION activity has related_work without authors, this fallback uses entry.content.authors, but the feed transformer populates that field with the contributor/actor for those entries (types/feed.ts:1117). In that scenario the activity work card now displays the funder as the proposal author instead of leaving authors blank or using real work authors, which misattributes proposal ownership in the funding activity feed.
Useful? React with 👍 / 👎.
… tracking and improving UI elements. Added SearchHistoryTracker to GrantSlugLayout, updated TopBar to support fund tabs, and refactored RecentlyVisitedCard for better hydration handling. Adjusted FeedItemActions for compact mode and improved ActivityCard components for better display. Updated FundingPowerCard to include deposit modal functionality.
… content type, specifically for 'PURCHASE' and 'USDFUNDRAISECONTRIBUTION'.
…ced ActivityWorkActions and ActivityWorkMetadata for better separation of concerns in ActivityCardFull. Updated ActivityCardSkeleton for improved loading states. Enhanced feed scroll tracking in FundActivityPageContent and GrantContentSwitcher.
…nted during tab switches.
|


Summary
Stack