const appHistory = useRouterHistory(createHashHistory)({ queryKey: false })
In recent versions, useRouterHistory() throws an error. Assuming you imported createHashHistory as follows:
import { createHashHistory } from 'history';
Try this:
const appHistory = createHashHistory()