0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-04-05 09:51:32 -05:00

Fix infinite scroll

This commit is contained in:
dragongoose 2023-04-11 14:27:25 -04:00
parent 50954d9583
commit d3c411c348
No known key found for this signature in database
GPG key ID: 50DB99B921579009

View file

@ -68,9 +68,9 @@ export default {
if (!res.ok) {
throw new Error('Failed to fetch data')
}
const data = await res.json()
const resData = await res.json()
for (let category of data) {
for (let category of resData.data) {
this.data.push(category)
}
}