Skip to content

Commit 8e2788d

Browse files
authored
Merge pull request #100 from devvsakib/development
favicon added issue #99
2 parents 7f75b24 + 946d6f0 commit 8e2788d

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>GitHub Error Solve - Opensource Projects</title>
8+
<link rel="shortcut icon" href="public/assets/logo.png" type="image/x-icon">
89
<link rel="stylesheet" href="./dist/output.css" />
910
<link rel="preconnect" href="https://fonts.googleapis.com" />
1011
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />

public/assets/preview.webp

34.2 KB
Binary file not shown.

src/components/Contributors/contributors.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Layout from '../../components/Layout/Layout';
44
import './css/index.css';
55

66
function Contribute() {
7+
const userURL = "https://api.github.com/users/";
78
const url = "https://api.github.com/repos/devvsakib/github-error-solve/contributors"
89
const [data, setData] = useState([]);
910
useEffect(() => {

src/hooks/useWindowsize.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ const useWindowSize = () => {
1717

1818
window.addEventListener('resize', handleResize);
1919

20-
const cleanUp = () => {
21-
console.log('runs if a useEffect dep changes')
20+
const cleanUp = () =>{
2221
window.removeEventListener('resize', handleResize)
2322
};
2423
return cleanUp;

0 commit comments

Comments
 (0)