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:
parent
50954d9583
commit
d3c411c348
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue