Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ddrosario committed Feb 29, 2024
1 parent 392b29d commit ab3b008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { useQuery } from '@tanstack/react-query';

function Index() {
const { isFetching, error, data } = useQuery({
const { isFetching, error } = useQuery({
queryKey: ['users'],
queryFn: () =>
fetch('/api/v1/users').then((res) => {
Expand Down

0 comments on commit ab3b008

Please sign in to comment.