Modrinth/app/router.scrollBehavior.js
Geometrically 86f37863a7
Lots of fixes - see trello (#347)
* A ton of fixes

* Fix project deletion message
2022-01-28 18:11:34 -07:00

8 lines
194 B
JavaScript

export default function (to, from, savedPosition) {
if (to.name.startsWith('type-id') && from.name.startsWith('type-id')) {
return savedPosition
} else {
return { x: 0, y: 0 }
}
}