From c756704abcdb2c0f83e5a1676402399e9cf38e6f Mon Sep 17 00:00:00 2001 From: Lucas 'Paperboy' Rose-Winters Date: Thu, 16 Oct 2025 12:17:43 +1100 Subject: [PATCH] chore: simplify mobile tab label from 'Info & Characters' to 'Info' --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 762cfe9..befeccc 100644 --- a/index.js +++ b/index.js @@ -1514,7 +1514,7 @@ function setupMobileTabs() { } // Combine Info and Characters into one tab if (hasInfoOrCharacters) { - tabs.push(''); + tabs.push(''); } const $tabNav = $('
' + tabs.join('') + '
');