Skip to content

Commit

Permalink
add todo from prez meeting, fix reset password, fix spacing, add prod…
Browse files Browse the repository at this point in the history
… server
  • Loading branch information
Pulkith committed Jul 17, 2024
1 parent 957d6ec commit 4b60567
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,20 @@ TODO: Remove Console.logs
TOOD: Move Logout button to at most height of window
TODO: enter to login
TODO: Get rid of old routes
TODO: Show Notes for Donation + Edit Feature
TODO: Update Report to be fiscal year + add date range feature
TODO: Finish Confirm Communication
TODO: Add "Ack" btn to add email automaticlaly
TODO: Add Table for Donations to Ack
TODO: Fix Modal UI
TODOO: "Add All Btn" to Email unack
TODO: Add Notes When You Create New Donor
TODO: Fix UI ON report Page
TODO: Add Donor Emails to Reports Page on Printout
TODO: update website to show average donation by month
TODO: Fix double click
TODO: Make Graph, use data from report
TODO: Fix Average Donation (Fiscal) in Communications Page
TODO: Make preview not editable in comms page for "search donors"
TODO: make groups update automatically after you make a new group
TODO: Confirmation on Password Reset
2 changes: 1 addition & 1 deletion client/src/Communications/CommunicationsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ function CommunicationsPage() {
</Typography>

<p>
If you sent the message to the copied emaisl, click the button
If you sent the message to the copied emails, click the button
below to log the communication.
</p>

Expand Down
2 changes: 1 addition & 1 deletion client/src/Reports/ReportsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function BasicTable({ alignment, report, prevReport }: BasicTableProps) {
style={{ textDecoration: 'none', color: '#0883ff' }}
>
{data.top_donator?.donor_name}
</a>
</a>{' '}
(
<a
href={`/donationInfo/${data.largest_donation?.donation_id}`}
Expand Down
2 changes: 1 addition & 1 deletion server/src/services/mail.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import SGmail, { MailDataRequired } from '@sendgrid/mail';
const appName = 'West Park Cultural Donation Management System'; // Replace with a relevant project name
const senderName = 'Hack4Impact UPenn'; // Replace with a relevant project sender
// const baseUrl = 'http://localhost:3000'; // TODO: figure out better place to put this
const baseUrl = 'https://west-park-cultural-0d318cb0ac65.herokuapp.com/';
const baseUrl = 'https://west-park-cultural-0d318cb0ac65.herokuapp.com';
// eslint-disable-next-line no-useless-concat
SGmail.setApiKey(`${process.env.SENDGRID_API_KEY}`);

Expand Down

0 comments on commit 4b60567

Please sign in to comment.