We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb63a90 commit 3386adaCopy full SHA for 3386ada
app/utils/api.js
@@ -15,7 +15,9 @@ const getProfile = username => {
15
};
16
17
const getRepos = username => {
18
- return axios.get('http://api.github.com/users/' + username + '/repos' + params + '&per_page=100');
+ return axios.get(
19
+ 'https://api.github.com/users/' + username + '/repos' + params + '&per_page=100',
20
+ );
21
22
23
const getStarCount = repos => {
0 commit comments