Skip to content

Commit 73f4593

Browse files
committed
fix: make linter happy
1 parent 1e33f70 commit 73f4593

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/User.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ const User = ({ match }: RouteComponentProps<UserParams>) => {
2121
} = useUser(match.params.id);
2222

2323
let benchmarks: benchmarkModel[] = [];
24-
const {
25-
isLoading: isBenchmarksLoading,
26-
isError: isBenchmarksError,
27-
data: benchmarksData,
28-
error: benchmarksError,
29-
} = useBenchmarksForUser(match.params.id);
24+
const { data: benchmarksData } = useBenchmarksForUser(match.params.id);
3025

3126
if (isProfileLoading) {
3227
return <span>Loading....</span>;

0 commit comments

Comments
 (0)