Skip to content

Commit

Permalink
Fixed Wrapped loading error
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu-1 committed Apr 18, 2024
1 parent d3c8ded commit abdccfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/Backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ export default class Backend {

const new_data = Array(6);

let head = new ListNode({ name: Genres.genres[0], count: counter[0] });
let head = new ListNode({ index: 0, count: counter[0] });

for (let i = 1; i < 53; i++) {
const temp = new ListNode({ index: i, count: counter[i] });
Expand Down

0 comments on commit abdccfa

Please sign in to comment.