diff --git a/nuxt-frontend/components/contact/NewContactForm.vue b/nuxt-frontend/components/contact/NewContactForm.vue index a7aa382a0..a7b60e09e 100755 --- a/nuxt-frontend/components/contact/NewContactForm.vue +++ b/nuxt-frontend/components/contact/NewContactForm.vue @@ -313,7 +313,7 @@ export default { }); localStorage.setItem( "client-name", - JSON.stringify(formData.name) + JSON.stringify(formData.name), ); this.resetForm(); }) diff --git a/nuxt-frontend/components/home-new/BlogSection.vue b/nuxt-frontend/components/home-new/BlogSection.vue index 91b683a4d..080223710 100755 --- a/nuxt-frontend/components/home-new/BlogSection.vue +++ b/nuxt-frontend/components/home-new/BlogSection.vue @@ -207,7 +207,7 @@ export default { * get date in MMM DD, YYYY format */ element.pubDate = new Date( - element.pubDate.replace(/-/g, "/") + element.pubDate.replace(/-/g, "/"), ).toLocaleDateString("en-US", { month: "long", day: "2-digit", diff --git a/nuxt-frontend/components/home-new/ContributionSection.vue b/nuxt-frontend/components/home-new/ContributionSection.vue index c3d17ee49..c1a664e18 100644 --- a/nuxt-frontend/components/home-new/ContributionSection.vue +++ b/nuxt-frontend/components/home-new/ContributionSection.vue @@ -172,7 +172,7 @@ export default { () => this.cData, (data) => { setGithubStars(this.contributions, data); - } + }, ); if (this.cData != null) { setGithubStars(this.contributions, this.cData); diff --git a/nuxt-frontend/components/home-new/ContributionSectionMobile.vue b/nuxt-frontend/components/home-new/ContributionSectionMobile.vue index 5df7e5aab..a5452c5f2 100644 --- a/nuxt-frontend/components/home-new/ContributionSectionMobile.vue +++ b/nuxt-frontend/components/home-new/ContributionSectionMobile.vue @@ -157,7 +157,7 @@ export default { () => this.cData, (data) => { setGithubStars(this.contributions, data); - } + }, ); if (this.cData != null) { setGithubStars(this.contributions, this.cData); diff --git a/nuxt-frontend/tailwind.config.js b/nuxt-frontend/tailwind.config.js index 60bf46169..9d15311f9 100644 --- a/nuxt-frontend/tailwind.config.js +++ b/nuxt-frontend/tailwind.config.js @@ -275,7 +275,7 @@ module.exports = { 120: "120deg", 135: "135deg", }), - } + }, ); }), function ({ addComponents }) {