From f14d1eac5b43ebf0a6257ea183affdeb4beb1c93 Mon Sep 17 00:00:00 2001 From: Dave Clark Date: Sun, 29 Sep 2024 10:31:25 -0400 Subject: [PATCH] Do not show Public tag in public games tab --- src/online.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/online.js b/src/online.js index 930478ce..771a7a20 100644 --- a/src/online.js +++ b/src/online.js @@ -2906,7 +2906,7 @@ function renderGameInfo(game) { labels.push(game.timeLimitName.toUpperCase('first')); if (!game.startedAt) - if (game.collection === 'public') + if (game.collection === 'public' && state.currentTab !== 'publicGames') labels.push('Public'); else if (!game.collection) labels.push('Private');