We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 167a8ba commit 7cd4669Copy full SHA for 7cd4669
src/Profile/index.js
@@ -5,7 +5,7 @@ import { GET_REPOSITORIES_OF_CURRENT_USER } from './queries';
5
import RepositoryList from '../Repository';
6
7
import Loading from '../Loading';
8
-import Error from '../Error';
+import ErrorMessage from '../Error';
9
10
const Profile = () => (
11
<Query
@@ -23,7 +23,7 @@ const Profile = () => (
23
}
24
25
if (error) {
26
- return <Error error={error} />;
+ return <ErrorMessage error={error} />;
27
28
29
return (
0 commit comments