Skip to content

Commit 2b5ba38

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents c34dfa2 + 97d5a3c commit 2b5ba38

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ or
8585

8686

8787
```console
88-
git branch -M main
89-
git push -u origin main
88+
git branch -M master
89+
git push -u origin master
9090
```
9191

9292
- On the GitHub website, navigate to your forked repo - on the top of the files section, you'll notice a new section containing a `Compare & Pull Request` button!

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)