Skip to content

Commit

Permalink
fix: remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Mar 6, 2021
1 parent 9c762da commit 3f4f0ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions ui/blocks/src/ComponentCommits/ComponentCommits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ export const ComponentCommits: FC<ComponentCommitsProps> = ({
const props = useCustomProps<ComponentCommitsProps>('commits', rest);
const component = useStoryComponent({ id, name });

console.log(component);

if (!component?.fileInfo?.commits) {
return null;
}
Expand Down
1 change: 0 additions & 1 deletion ui/components/src/GithubAvatar/useGithubProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ export const useGithubProfile = ({
)
.then(res => res.json())
.then(result => {
console.log('MATCH', result);
profilesCache[username] = result;
setProfile(profilesCache[username]);
});
Expand Down

0 comments on commit 3f4f0ad

Please sign in to comment.