Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
Showing only changes of commit b8bc2c4cb6 - Show all commits
+3 -1
View File
@@ -940,7 +940,9 @@ const planQuery = async () => {
const planElement = document.querySelector(`[nav-hash="plan"]`) const planElement = document.querySelector(`[nav-hash="plan"]`)
if (planElement) { if (planElement) {
planElement.scrollIntoView({ behavior: 'smooth' }) planElement.scrollIntoView({ behavior: 'smooth' })
await selectProduct(route.query.plan) if (route.query.plan !== null) {
await selectProduct(route.query.plan)
}
} }
} }
} }