Skip to content

Commit

Permalink
improving accessibility and clear console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Macktireh committed Aug 3, 2024
1 parent 896b935 commit 114e25a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 3 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

<head>
<meta charset="utf-8" />
<link rel="icon" href="/static/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" />
<meta name="author" content="Macktireh Abdi Soubaneh" />
<meta name="description" content="Clone Twitter is a social networking application that mimics Twitter's main features" />
<link rel="icon" href="/static/favicon.ico" />
<link rel="apple-touch-icon" href="/static/img/apple-touch-icon.png">
<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
Expand Down
2 changes: 0 additions & 2 deletions src/actions/auth/googleLogin.action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const googleLoginAction =

const body = JSON.stringify({ code });

console.log("googleLoginAction body", body);

try {
const res = await Axios.post(Api.googleLoginEndpoint, body, config);

Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const Navbar: React.FC<propsTypes> = ({ currentUser, notification }) => {
<span className={active === "profile" ? "active" : ""}>Profile</span>
</NavLink>

<div className="nav-link" onClick={() => console.log("Show More")}>
<div className="nav-link" onClick={() => void 0}>
<IconSVG iconName="more" />
<span>More</span>
</div>
Expand Down

0 comments on commit 114e25a

Please sign in to comment.