Skip to content

Commit

Permalink
Bumped the core library version
Browse files Browse the repository at this point in the history
  • Loading branch information
sgruse committed Mar 6, 2019
1 parent e8cc72a commit 6f09501
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/clubs/drivers-club/mailer/templates/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const membershipApplicationTemplate = (memberInfo) => {
};
exports.MembershipApplicationTemplate = membershipApplicationTemplate;
const membershipInquiryTemplate = (memberInfo) => {
console.log('hit with member info : ', memberInfo);
const message = `
<p> Hi there!</p>
Expand All @@ -90,7 +91,7 @@ const membershipInquiryTemplate = (memberInfo) => {
${bulletLine('Email', memberInfo.email)}
</li>
<li>
${bulletLine('Desired Membership', memberInfo.membership)}
${bulletLine('Desired Membership', memberInfo.membership.label)}
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"index.js"
],
"dependencies": {
"club-hub-core": "https://git@github.com:meshhq/club-hub-core.git#0.0.9",
"club-hub-core": "https://git@github.com:meshhq/club-hub-core.git#0.0.12",
"feather-icons": "^4.17.0",
"handlebars": "^4.1.0"
},
Expand Down
3 changes: 2 additions & 1 deletion src/clubs/drivers-club/mailer/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const membershipApplicationTemplate = (memberInfo: any) => {
}

const membershipInquiryTemplate = (memberInfo: any) => {
console.log('hit with member info : ', memberInfo)
const message = `
<p> Hi there!</p>
Expand All @@ -96,7 +97,7 @@ const membershipInquiryTemplate = (memberInfo: any) => {
${bulletLine('Email', memberInfo.email)}
</li>
<li>
${bulletLine('Desired Membership', memberInfo.membership)}
${bulletLine('Desired Membership', memberInfo.membership.label)}
</li>
</ul>
Expand Down

0 comments on commit 6f09501

Please sign in to comment.