Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8d6338f
Tess and JBJ boiler plate config and scaffolding
tess-jl Feb 21, 2020
ef23afc
Tess and JBJ Header component draft
tess-jl Feb 21, 2020
bbf8e1e
Tess and JBJ Loading component drafted
tess-jl Feb 21, 2020
7aeb23b
Tess JBJ Dev and DevList drafts
tess-jl Feb 21, 2020
5b0ba92
Tess JBJ hardcoded data for devlist
tess-jl Feb 21, 2020
947d937
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 21, 2020
5fe71fe
prepping for pull
tess-jl Feb 25, 2020
d313ba9
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 25, 2020
73998b0
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
e631e6e
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
7bb2dc7
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
4ad442f
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
58b21ca
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
47d03dc
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
3a6aea8
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
bd122a9
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 27, 2020
843b83c
prepping to pull fresh dev
tess-jl Feb 28, 2020
46bf4e8
prepping to pull more dev
tess-jl Feb 28, 2020
e56f3fb
prepping to pull fresh dev
tess-jl Feb 28, 2020
9faccd9
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 28, 2020
8ae4d1b
prepping to test
tess-jl Feb 28, 2020
89508a6
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 28, 2020
a43cc76
prepping to pull in some fresh dev
tess-jl Feb 28, 2020
c2a43b6
Merge branch 'dev' of https://github.com/Commit-Kitty/Commit-Kitty-FE…
tess-jl Feb 28, 2020
4b17174
deleted gitHubUserServices.js based on refactoring to adminDataViewSe…
tess-jl Feb 28, 2020
d82d843
deleted console.log in adminDataView
tess-jl Feb 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"chart.js": "^2.9.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
Expand Down
1 change: 0 additions & 1 deletion src/actions/previewActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export const createDev = (handle, name) => dispatch => {
dispatch(turnLoadingOn());
return isHandleOnGitHub(handle)
.then(validatedDev => {
console.log('this is the value returned from isHandleOnGitHub', validatedDev);
if(validatedDev.message !== 'Not Found') {
const devForPost = {
devGitHubHandle: handle,
Expand Down
4 changes: 3 additions & 1 deletion src/hooks/usePreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export const usePreview = () => {

const handleAddDevHandleCheckAgainstGitHub = (gitHubHandle, name) => {
return dispatch(createDev(gitHubHandle, name))
.then(dev => setGroupDev(dev));
.then(dev => {
setGroupDev(dev);
});
};


Expand Down
1 change: 0 additions & 1 deletion src/services/adminDataViewServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const getDevCommits = (arrayOfDevs) => {
.then(res => res.json())
.then(repos => repos[0])
.then(repo => {
console.log('repo', repo);
results.repoName = repo.name;
results.image = repo.owner.avatar_url;
return fetch(`https://api.github.com/repos/${dev.gitHubHandle}/${repo.name}/commits?sha=dev`, {
Expand Down
13 changes: 0 additions & 13 deletions src/services/gitHubUserServices.js

This file was deleted.