Skip to content

Commit

Permalink
Merge pull request #47 from eksqtr/development
Browse files Browse the repository at this point in the history
Fixes typo when pushing url history
  • Loading branch information
eksqtr authored Aug 26, 2024
2 parents ddfe287 + ce96ea7 commit 5b775da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/techsection/jobsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const JobExperience = () => {
setSelectedJob(job);
const params = new URLSearchParams(searchParams);
params.set('job', index.toString());
window.history.pushState(null, '', `${pathname}#$tech-stack?tab=experience&job=${index}`);
window.history.pushState(null, '', `${pathname}#tech-stack?tab=experience&job=${index}`);
};

// We need to sanitize the possibilies of XSS attack so we use dom prufiy for this shit
Expand Down

0 comments on commit 5b775da

Please sign in to comment.