Fix auto refresh not clearing on component unmount

This commit is contained in:
DoubleREW
2025-01-21 14:58:04 +01:00
committed by GitHub
parent 435d28c790
commit c19cf125e8
+1 -1
View File
@@ -67,7 +67,7 @@ export default function PaginationMixin (opts = {}) {
this.fetchMore()
}
},
beforeDestroy () {
beforeUnmount () {
clearInterval(this.pollingInterval)
}
}