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 Apr 19, 2024
1 parent e1283aa commit e406a2a
Showing 1 changed file with 2 additions and 2 deletions.
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 e406a2a

Please sign in to comment.