TECH-155: resolve issues raised by copilot#138
Draft
ACM02 wants to merge 5 commits into
Draft
Conversation
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.
Jira Issue Reference
Type of Change
Description
Fixed issues raised by Copilot in this release PR: #137
Render button as child (
src/app/events/goosies-2024/page.tsx)Added the
asChildprop as suggestedNumeric prop for height/width
next/imageexpects a numeric type for height/width, so this was fixed in all occurrences across the codebase.#137 (comment)
Change link wording (
src/data/events.ts)Changed the wording of the link for the 2024 goosies page from
View photostoSee pagesince it isn't a photo gallery. This is consistent with other event pages.#137 (comment)
Fix double fetching (
src/components/page-header.tsx)The page header file was double fetching the header on every load, once with the mobile size and once with the desktop size. By marking them as
hiddenit now only fetches once.TODO: This is now fetching different image sizes than before which seems less optimized, need to resolve this before marking this as ready to review
Before:

After:

#137 (comment)
Testing
Ensure you've tested the following, if applicable. Select all that apply.