0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Fixes an TypeError when using without (#10456)

This commit is contained in:
Martin Trapp 2024-03-15 19:04:41 +01:00 committed by GitHub
parent 8a80dbfdde
commit 1900a8f9bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"astro": patch
---
Fixes an error when using `astro:transtions/client` without `<ViewTransitions/>`

View file

@ -622,7 +622,7 @@ const onScrollEnd = () => {
// "scrollend" events. To avoid redundant work and expensive calls to
// `replaceState()`, we simply check that the values are different before
// updating.
if (scrollX !== history.state.scrollX || scrollY !== history.state.scrollY) {
if (history.state && (scrollX !== history.state.scrollX || scrollY !== history.state.scrollY)) {
updateScrollPosition({ scrollX, scrollY });
}
};