From d0e212e23d02c8da5bfc44ee5ae18c5781f0a3cf Mon Sep 17 00:00:00 2001 From: yukirij Date: Fri, 30 Aug 2024 22:57:22 -0700 Subject: [PATCH] Fix incorrect variable. --- www/js/scene.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/scene.js b/www/js/scene.js index b4c31ea..895a613 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -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, );