Stuck at changing routes

This commit is contained in:
Julien Nahum
2023-10-14 18:24:44 +02:00
parent 358bf0e4d0
commit 3d3759c58c
29 changed files with 316 additions and 540 deletions

View File

@@ -22,9 +22,9 @@ import SeoMeta from '../../mixins/seo-meta.js'
export default {
components: { OpenFormFooter },
mixins: [SeoMeta],
layout: 'default',
middleware: 'auth',
mixins: [SeoMeta],
data: () => ({
metaTitle: 'Subscription Success',
@@ -36,7 +36,7 @@ export default {
this.interval = setInterval(() => this.checkSubscription(), 5000)
},
beforeDestroy () {
beforeUnmount () {
clearInterval(this.interval)
},