Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-dharti-r committed Mar 14, 2024
1 parent 0be2e45 commit eb19a2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions nuxt-frontend/components/CTA/CTA2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ onMounted(() => {
recaptchaScript.setAttribute(
"src",
"https://www.google.com/recaptcha/enterprise.js?render=" +
recaptchaKey.value
recaptchaKey.value,
);
recaptchaScript.setAttribute("async", "true");
recaptchaScript.setAttribute("defer", "true");
Expand Down Expand Up @@ -300,7 +300,7 @@ const submitForm = (event) => {
.then(() => {
localStorage.setItem(
"client-name",
JSON.stringify(formData.name)
JSON.stringify(formData.name),
);
window.location.href = "/thank-you";
resetForm();
Expand Down
4 changes: 2 additions & 2 deletions nuxt-frontend/components/CTA/CTA3.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ onMounted(() => {
recaptchaScript.setAttribute(
"src",
"https://www.google.com/recaptcha/enterprise.js?render=" +
recaptchaKey.value
recaptchaKey.value,
);
recaptchaScript.setAttribute("async", "true");
recaptchaScript.setAttribute("defer", "true");
Expand Down Expand Up @@ -310,7 +310,7 @@ const submitForm = (event) => {
.then(() => {
localStorage.setItem(
"client-name",
JSON.stringify(formData.name)
JSON.stringify(formData.name),
);
window.location.href = "/thank-you";
resetForm();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ module.exports = {
120: "120deg",
135: "135deg",
}),
}
},
);
}),
function ({ addComponents }) {
Expand Down
4 changes: 2 additions & 2 deletions nuxt-frontend/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function setGithubStars(contributions, githubRepos) {
.filter(
(repo) =>
repo.name ==
contribution.link.slice(contribution.link.lastIndexOf("/") + 1)
contribution.link.slice(contribution.link.lastIndexOf("/") + 1),
)
.map((repo) => repo.stargazers_count.toString())[0];
});
Expand Down Expand Up @@ -79,7 +79,7 @@ function getJobDates() {
currentDay <= maxDays
? startDateOfMonth
: new Date(
startDateOfMonth.setDate(startDateOfMonth.getDate() + maxDays)
startDateOfMonth.setDate(startDateOfMonth.getDate() + maxDays),
);

const datePosted = jobPosted.toISOString().split("T")[0];
Expand Down

0 comments on commit eb19a2d

Please sign in to comment.