Automated Emails Updates & Login/Signup Design Updates#198
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates user-facing copy and styling in the frontend login/signup flows and pantry refrigerator labels, and updates backend automated email templates (including adding a pantry contact line to the food-manufacturer “matched order” email).
Changes:
- Update login/signup footer text styling (textStyle/color) and adjust pantry UI labels to “Refrigerator/Freezer-Friendly”.
- Update multiple automated email templates for wording/links and add
pantryContacttofmDonationMatchedOrder. - Update
OrdersServiceand its unit test to pass the newpantryContactparameter into the email template.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| apps/frontend/src/containers/volunteerAssignedPantries.tsx | Updates pantry “refrigerator friendly” display text. |
| apps/frontend/src/containers/adminPantryManagement.tsx | Updates pantry “refrigerated donation” badge text. |
| apps/frontend/src/containers/signupPage.tsx | Updates “Already have an account?” text/link styling. |
| apps/frontend/src/containers/loginPage.tsx | Updates “Don’t have an account?” text/link styling. |
| apps/backend/src/orders/order.service.ts | Passes pantryContact into fmDonationMatchedOrder email template. |
| apps/backend/src/orders/order.service.spec.ts | Updates email-template construction in test to include pantryContact. |
| apps/backend/src/emails/emailTemplates.ts | Wording/link updates across templates; adds pantryContact to FM matched-order template. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
43
to
46
| <p> | ||
| Once logged in, you'll be able to view your assignments, track active requests, | ||
| Once logged in, you will view your assignments, track active requests, | ||
| and collaborate with partner organizations. | ||
| </p> |
Comment on lines
+303
to
+307
| If you have any questions or need assistance, please contact your coordinator, ${ | ||
| params.volunteerName | ||
| } at <a href="mailto:${params.volunteerEmail}">${ | ||
| }, at <a href="mailto:${params.volunteerEmail}">${ | ||
| params.volunteerEmail | ||
| }</a>. | ||
| } </a> or email <a href="mailto:partners@securingsafefood.org">partners@securingsafefood.org</a>. |
Comment on lines
379
to
381
| {isRefrigeratorFriendly(pantry) | ||
| ? 'Refrigerator-Friendly' | ||
| ? 'Refrigerator/Freezer-Friendly' | ||
| : 'Not Refrigerator-Friendly'} |
Comment on lines
398
to
+400
| {pantry.refrigeratedDonation === RefrigeratedDonation.NO | ||
| ? 'Not Refrigerator-Friendly' | ||
| : 'Refrigerator-Friendly'} | ||
| : 'Refrigerator/Freezer-Friendly'} |
jiang-h-y
approved these changes
Jun 21, 2026
dburkhart07
approved these changes
Jun 21, 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.
ℹ️ Issue
Requested changes from client documented in here https://docs.google.com/document/d/1xuRZ9XPIOmIixPXh1aZ3Mz0uTKYIqt63YbkXWvwuCpg/edit?usp=sharing
📝 Description
Write a short summary of what you added. Why is it important? Any member of C4C should be able to read this and understand your contribution -- not just your team members.
Briefly list the changes made to the code:
✔️ Verification
What steps did you take to verify your changes work? These should be clear enough for someone to be able to clone the branch and follow the steps themselves.
Provide screenshots of any new components, styling changes, or pages.
🏕️ (Optional) Future Work / Notes
Did you notice anything ugly during the course of this ticket? Any bugs, design challenges, or unexpected behavior? Write it down so we can clean it up in a future ticket!