Skip to content

Commit d8617b7

Browse files
committed
fix import paths
1 parent e667aef commit d8617b7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Issue/IssueItem/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { withState } from 'recompose';
33

44
import Button from '../../Button';
5-
import CommentList from '../../Comment/CommentList';
5+
import CommentList from '../../Comment';
66
import Link from '../../Link';
77

88
import './style.css';

src/Issue/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import IssueList from './IssueList';
1+
import Issues from './IssueList';
22

3-
export default IssueList;
3+
export default Issues;

src/Repository/RepositoryList/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { Fragment } from 'react';
22

33
import RepositoryItem from '../RepositoryItem';
44

5-
import IssueList from '../../Issue/IssueList';
5+
import Issues from '../../Issue';
66
import FetchMore from '../../FetchMore';
77

88
import '../style.css';
@@ -42,7 +42,7 @@ const RepositoryList = ({
4242
<div key={node.id} className="RepositoryItem">
4343
<RepositoryItem {...node} />
4444

45-
<IssueList
45+
<Issues
4646
repositoryName={node.name}
4747
repositoryOwner={node.owner.login}
4848
/>

0 commit comments

Comments
 (0)