Skip to content

Commit 0c32270

Browse files
authored
fix(react-query): do not use global JSX namespace (#7436)
1 parent 0e39724 commit 0c32270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-query/src/QueryClientProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export type QueryClientProviderProps = {
2929
export const QueryClientProvider = ({
3030
client,
3131
children,
32-
}: QueryClientProviderProps): JSX.Element => {
32+
}: QueryClientProviderProps): React.JSX.Element => {
3333
React.useEffect(() => {
3434
client.mount()
3535
return () => {

0 commit comments

Comments
 (0)