function useQueryErrorResetBoundary(): QueryErrorResetBoundaryValue;Defined in: preact-query/src/QueryErrorResetBoundary.tsx:85
This hook will reset any query errors within the closest QueryErrorResetBoundary. If there is no boundary defined it will reset them globally.
QueryErrorResetBoundaryValue
The boundary's QueryErrorResetBoundaryValue.
import { useErrorBoundary } from 'preact/hooks'
import type { ComponentChildren } from 'preact'
import { useQueryErrorResetBoundary } from '@tanstack/preact-query'
function App({ children }: { children: ComponentChildren }) {
const { reset } = useQueryErrorResetBoundary()
const [error, resetError] = useErrorBoundary(() => reset())
if (error) {
return (
<div>
There was an error!
<button onClick={() => resetError()}>Try again</button>
</div>
)
}
return children
}