From 5cf59010014da4e4c695216547b22681df1541aa Mon Sep 17 00:00:00 2001 From: cottongin Date: Mon, 3 Nov 2025 18:38:27 -0500 Subject: [PATCH] tweaks --- frontend/src/config/branding.js | 2 +- frontend/src/pages/Picker.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/config/branding.js b/frontend/src/config/branding.js index 47f31d2..74f717c 100644 --- a/frontend/src/config/branding.js +++ b/frontend/src/config/branding.js @@ -2,7 +2,7 @@ export const branding = { app: { name: 'HSO Jackbox Game Picker', shortName: 'Jackbox Game Picker', - version: '0.5.0 - Safari Walkabout Edition', + version: '0.5.1 - Thode Goes Wild Edition', description: 'Spicing up Hyper Spaceout game nights!', }, meta: { diff --git a/frontend/src/pages/Picker.jsx b/frontend/src/pages/Picker.jsx index 80d2dad..a53fc5b 100644 --- a/frontend/src/pages/Picker.jsx +++ b/frontend/src/pages/Picker.jsx @@ -88,8 +88,8 @@ function Picker() { // Don't auto-create session - let user create it explicitly setActiveSession(session); - // Load all games for manual selection - const gamesResponse = await api.get('/games'); + // Load all enabled games for manual selection + const gamesResponse = await api.get('/games?enabled=true'); setAllGames(gamesResponse.data); // Load currently playing game if session exists