Skip to content

Commit 3386ada

Browse files
author
Kevin Turney
committed
fix mixed content warning
1 parent fb63a90 commit 3386ada

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/utils/api.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ const getProfile = username => {
1515
};
1616

1717
const getRepos = username => {
18-
return axios.get('http://api.github.com/users/' + username + '/repos' + params + '&per_page=100');
18+
return axios.get(
19+
'https://api.github.com/users/' + username + '/repos' + params + '&per_page=100',
20+
);
1921
};
2022

2123
const getStarCount = repos => {

0 commit comments

Comments
 (0)