Skip to content

Commit

Permalink
run npm audit fix, manually fix some warnings (saadpasta#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikcho authored Feb 10, 2021
1 parent 0bd3fc1 commit 2789597
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/experienceCard/ExperienceCard.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState, useEffect, createRef} from "react";
import React, {useState, createRef} from "react";
import "./ExperienceCard.css";
import ColorThief from "colorthief";

Expand Down
9 changes: 3 additions & 6 deletions src/components/githubRepoCard/GithubRepoCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ export default function GithubRepoCard({repo, isDark}) {
<div className="repo-name-div">
<svg
aria-hidden="true"
className="octicon"
className="octicon repo-svg"
height="20"
role="img"
viewBox="0 0 12 16"
width="14"
className="repo-svg"
>
<path
fill-rule="evenodd"
Expand All @@ -48,13 +47,12 @@ export default function GithubRepoCard({repo, isDark}) {
<span>
<svg
aria-hidden="true"
className="octicon"
className="octicon repo-star-svg"
height="20"
role="img"
viewBox="0 0 10 16"
width="12"
fill="rgb(106, 115, 125)"
className="repo-star-svg"
>
<path
fill-rule="evenodd"
Expand All @@ -66,13 +64,12 @@ export default function GithubRepoCard({repo, isDark}) {
<span>
<svg
aria-hidden="true"
className="octicon"
className="octicon repo-star-svg"
height="20"
role="img"
viewBox="0 0 14 16"
width="14"
fill="rgb(106, 115, 125)"
className="repo-star-svg"
>
<path
fill-rule="evenodd"
Expand Down
4 changes: 2 additions & 2 deletions src/components/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Header() {
return (
<Headroom>
<header className={isDark ? "dark-menu header" : "header"}>
<a href="" className="logo">
<a href="/" className="logo">
<span className="grey-color"> &lt;</span>
<span className="logo-name">{greeting.username}</span>
<span className="grey-color">/&gt;</span>
Expand Down Expand Up @@ -73,7 +73,7 @@ function Header() {
<a href="#contact">Contact Me</a>
</li>
<li>
<a>
<a href="#">
<ToggleSwitch />
</a>
</li>
Expand Down
2 changes: 2 additions & 0 deletions src/components/socialMedia/SocialMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export default function socialMedia() {
href={socialMediaLinks.medium}
className="icon-button medium"
target="_blank"
rel="noopener noreferrer"
>
<i className="fab fa-medium"></i>
<span></span>
Expand All @@ -108,6 +109,7 @@ export default function socialMedia() {
href={socialMediaLinks.stackoverflow}
className="icon-button stack-overflow"
target="_blank"
rel="noopener noreferrer"
>
<i className="fab fa-stack-overflow"></i>
<span></span>
Expand Down

0 comments on commit 2789597

Please sign in to comment.