Skip to content

Commit 800f214

Browse files
committed
merge main into branch, remove unused imports
1 parent e04e0d3 commit 800f214

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7171
- updated 'about us' section (our goals, our purpose)
7272
- updated mobile nav to automatically close when page route change is completed
7373
- adjust flex-basis of a few sections in the about page to better match the design file
74-
74+
- removed unused import and comments from development stage
7575

7676

7777
### Updated
@@ -80,5 +80,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8080
- .env-template to include SENDGRID_API_KEY
8181
- fixed next.js warning - no stylesheets in head component
8282
(added _document.js and moved google fonts into _document.js)
83+
- refactor CardColumns to accept an array of card objects as props
8384

8485

pages/about.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
primaryAccent,
77
lightBgColor,
88
} from '@/styles/TwoColumn.module.scss';
9-
import rowStyles from '@/styles/Row.module.scss';
109
import CardsColumns from '@/components/containers/CardsColumns';
1110
import Title from '@/components/snippets/Title';
1211
import Wrapper from '@/components/containers/Wrapper';

pages/api/contact.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ export default async (req, res) => {
2626
headers: {
2727
'Content-Type': 'application/x-www-form-urlencoded',
2828
},
29-
body: `secret=${process.env.RECAPTCHA_SECRET_KEY}&response=${req.body.gReCaptchaToken}`,
29+
body: `secret=${process.env.RECAPTCHA_SECRET_KEY}&response=${gReCaptchaToken}`,
3030
})
3131
).json();
3232

3333
if (reCaptchaValidation.success) {
34-
// TODO: change the emails to '[email protected]' before PR
3534
// receiverEmail: The email will be sent here
3635
const receiverEmail = '[email protected]';
3736
// sendgridEmail: This is the email verfied by sendgrid

0 commit comments

Comments
 (0)