Fix incorrect variable.

This commit is contained in:
yukirij 2024-08-30 22:57:22 -07:00
parent 9b3e616de0
commit d0e212e23d

View File

@ -838,14 +838,14 @@ const SCENES = {
buttons.push(UI.button(LANG("decline"), callback_decline));
rows.push([
UI.text(data.challenges[r].handle),
UI.text(LANG("unranked")),
UI.text(data.users[r].handle),
buttons,
]);
}
let tbody = UI.table_content(
[ LANG("rank"), LANG("handle"), "" ],
[ LANG("handle"), LANG("rank"), "" ],
rows,
);