Team based requests.#487
Open
seanmarcia wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a new “For Teams” experience that lists nonprofit team volunteer requests, including data generation during builds and new UI components/styles.
Changes:
- Introduces an
Organizationmodel,/teamspage, and organization listing UI with filters and expandable details - Adds a build-time generator (
generate-organizations.ts) and wires it intoprebuild - Introduces/updates styling and formatting (Tailwind/Next config formatting, new SCSS rules, new ESLint flat config)
Reviewed changes
Copilot reviewed 30 out of 34 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
types.ts |
Adds Organization interface for the new teams/orgs feature |
pages/teams.tsx |
New Teams page rendering hero + organization list from generated data |
components/Organization*.tsx |
New list/item/metadata components for organizations + filtering/expand behavior |
generate-organizations.ts |
New build-time script to fetch and generate organizations.json |
package.json |
Runs org generation as part of prebuild |
styles/globals.scss |
Adds styles for org UI and changes global paragraph styling |
topics.json |
Updates topics list content (now includes duplicates) |
eslint.config.mjs |
Adds ESLint v9 flat config setup |
components/Header/* |
Adds header-level tabs for Individuals vs Teams |
tailwind.config.js, next.config.js, misc components |
Formatting/consistency updates |
Comments suppressed due to low confidence (2)
styles/globals.scss:1
- This introduces a global
html p { ... }rule (because it’s nested underbase, html) that removes margins and forces font sizing/line-height for all paragraphs across the site. That’s a broad styling change and is likely to cause regressions in existing layouts/components. Scope these paragraph rules to the new teams/org UI container(s) (e.g.,.org-list-wrap por the specific component classes) instead of globally.
topics.json:1 topics.jsonnow contains many duplicates (e.g.,sdg-4,sdg-16,sdg-3,sdg-5). If this file is used to drive UI options or topic processing, duplicates will cause repeated options/entries and unstable behavior. Update the generator (or the file) to dedupe and produce a stable ordering (e.g., unique + sorted) before writing.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
csmlo
approved these changes
Jun 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.