File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 66 primaryAccent ,
77 lightBgColor ,
88} from '@/styles/TwoColumn.module.scss' ;
9- import rowStyles from '@/styles/Row.module.scss' ;
109import CardsColumns from '@/components/containers/CardsColumns' ;
1110import Title from '@/components/snippets/Title' ;
1211import Wrapper from '@/components/containers/Wrapper' ;
Original file line number Diff line number Diff 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 'hello@webdevpath.co' before PR
3534 // receiverEmail: The email will be sent here
3635 const receiverEmail = 'hello@webdevpath.co' ;
3736 // sendgridEmail: This is the email verfied by sendgrid
You can’t perform that action at this time.
0 commit comments