Skip to content

Commit

Permalink
Small bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalS99 committed Sep 18, 2023
1 parent 330c5c0 commit 5710c09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Home/Experience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function ExperienceMobile() {
company={currentExperience().company}
type={currentExperience().job_type}
location={currentExperience().location}
duration={currentExperience().start_date + " (" + Math.floor(new Date(currentExperience().end_date) - new Date(currentExperience().start_date) / (1000 * 60 * 60 * 24 * 30))}
duration= {buildDuration(currentExperience().start_date, currentExperience().end_date)}
logo={currentExperience().logo}
desc={currentExperience().desc}
tech={currentExperience().tech}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Home/Gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function GalleryMobile() {
<br />
Do check out my page{" "}
<a
href="https://github.com/VishalS99"
href="https://www.instagram.com/_vishal_here_/"
class="text-accent underline hover:text-secondary"
>
_vishal_here_
Expand Down

0 comments on commit 5710c09

Please sign in to comment.