Skip to content

Commit c0a083e

Browse files
committed
Fix minor JSX related type issues
1 parent cba6632 commit c0a083e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolkit/src/query/tests/cleanup.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const getSubStateB = () => storeRef.store.getState().api.queries['b(undefined)']
2626
function UsingA() {
2727
const { data } = api.endpoints.a.useQuery()
2828

29-
return <>Result: {data} </>
29+
return <>Result: {data as React.ReactNode} </>
3030
}
3131

3232
function UsingB() {

0 commit comments

Comments
 (0)