Skip to content

Commit

Permalink
fix(react-query): do not use global JSX namespace (#7436)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored May 15, 2024
1 parent 0e39724 commit 0c32270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-query/src/QueryClientProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export type QueryClientProviderProps = {
export const QueryClientProvider = ({
client,
children,
}: QueryClientProviderProps): JSX.Element => {
}: QueryClientProviderProps): React.JSX.Element => {
React.useEffect(() => {
client.mount()
return () => {
Expand Down

0 comments on commit 0c32270

Please sign in to comment.