Conversation
|
View your CI Pipeline Execution ↗ for commit 5332492
☁️ Nx Cloud last updated this comment at |
There was a problem hiding this comment.
Pull request overview
Removes the “Executive Director” content block from the Organization page data model and query, and updates footer contact details.
Changes:
- Removed Executive Director heading/paragraph IDs from the models.
- Removed Executive Director fields/variables/collection from the Organization page GraphQL query (and regenerated types).
- Updated the footer mailing address and contact email.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
website/src/models/paragraphs/index.ts |
Removes the Executive Director paragraphs ID constant. |
website/src/models/headings/index.ts |
Removes the Executive Director heading ID constant. |
website/src/graphql/queries/pages/organization/index.graphql |
Drops Executive Director variables and query selections. |
website/src/graphql/queries/pages/organization/index.generated.ts |
Updates generated types/document to match the updated Organization query. |
website/src/components/footer/markup.tsx |
Updates displayed mailing address and mailto link. |
website/src/app/[lang]/organization/page-body.tsx |
Removes Executive Director variables/section rendering, but still contains a remaining reference (see PR comment). |
Comments suppressed due to low confidence (1)
website/src/app/[lang]/organization/page-body.tsx:67
executiveDirectorHeadingis still being destructured fromdataand included in theheadingsarray, but the Organization page GraphQL query no longer fetches anexecutiveDirectorHeadingfield. This will break TypeScript types (and makes the first heading entry always empty/undefined). RemoveexecutiveDirectorHeadingfrom the destructuring and from theheadingsarray (and any other remaining references).
const {
executiveDirectorHeading,
boardHeading,
boardParagraphs,
volunteersHeading,
scientificHeading,
researchHeading,
scientificParagraphs,
researchParagraphs,
boardMembers,
volunteersMembers,
scientificMembers,
researchMembers,
} = data;
const headings = [
executiveDirectorHeading?.content ?? '',
boardHeading?.content ?? '',
volunteersHeading?.content ?? '',
scientificHeading?.content ?? '',
researchHeading?.content ?? '',
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
pataruco
added a commit
that referenced
this pull request
Apr 18, 2026
🤖 I have created a release *beep* *boop* --- ## [3.9.0](v3.8.0...v3.9.0) (2026-04-18) ### Features * remove ed from org ([5332492](5332492)) * remove ed from org ([#412](#412)) ([290b14d](290b14d)) ### Bug Fixes * org page build ([65b6719](65b6719)) * org page build ([#414](#414)) ([e11a512](e11a512)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
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.