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 1e33f70 commit 73f4593Copy full SHA for 73f4593
src/components/User.tsx
@@ -21,12 +21,7 @@ const User = ({ match }: RouteComponentProps<UserParams>) => {
21
} = useUser(match.params.id);
22
23
let benchmarks: benchmarkModel[] = [];
24
- const {
25
- isLoading: isBenchmarksLoading,
26
- isError: isBenchmarksError,
27
- data: benchmarksData,
28
- error: benchmarksError,
29
- } = useBenchmarksForUser(match.params.id);
+ const { data: benchmarksData } = useBenchmarksForUser(match.params.id);
30
31
if (isProfileLoading) {
32
return <span>Loading....</span>;
0 commit comments