Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (6)
📝 WalkthroughWalkthroughThis pull request introduces a new Member Network API route that fetches company data from NocoDB and updates the Member Network page to dynamically render this data instead of hardcoded arrays. Additional changes include CSS animation improvements and UI refinements across the home page and navigation components. Changes
Sequence DiagramsequenceDiagram
participant User as User/Browser
participant Page as Member Network Page
participant API as /api/member-network
participant NocoDB as NocoDB
User->>Page: Load member-network page
Page->>API: GET /api/member-network (cache: no-store)
API->>NocoDB: Query MEMBER_NETWORK_TABLE_ID<br/>with xc-token auth
NocoDB-->>API: Return up to 1000 records
API->>API: Transform records to MemberNetworkLogo<br/>(extract path, apply defaults)
API-->>Page: Return [MemberNetworkLogo] JSON
Page->>Page: Group companies by type<br/>Sort within groups
Page->>Page: Render LogoCard per company<br/>with image fallback
Page-->>User: Display Member Network
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
✨ Finishing Touches✨ Simplify code
Comment |
Summary by CodeRabbit
Release Notes
New Features
Style