Skip to content

Commit

Permalink
fix: remove misplaced spread operator
Browse files Browse the repository at this point in the history
  • Loading branch information
helciofranco committed Mar 8, 2024
1 parent a885b0d commit 087cc42
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/react/src/hooks/useIsConnected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@ export const useIsConnected = () => {
initialData: null,
});

return {
...query,
};
return query;
};

0 comments on commit 087cc42

Please sign in to comment.