Replicating Turbo behavior
+ import { urlToPageKey } from '@thoughtbot/superglue'
const appVisit = (...args) => {
const pageKey = urlToPageKey(args[0])
+ // attempt to navigate first
+ ref.current?.navigateTo(pageKey)
return store
.dispatch(visit(...args))
....Last updated