From b6a5738f7d17c682e66a4aec65f722349ea790a2 Mon Sep 17 00:00:00 2001 From: Shokkstokk Date: Fri, 5 Jun 2026 07:33:03 +0000 Subject: [PATCH] refactor: remove useSDLogos guard from logo style handler Allow logo style selection to save regardless of toggle state. --- frontend/src/components/forms/EPG.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/forms/EPG.jsx b/frontend/src/components/forms/EPG.jsx index b2ea9e1e..b94fadcd 100644 --- a/frontend/src/components/forms/EPG.jsx +++ b/frontend/src/components/forms/EPG.jsx @@ -93,7 +93,6 @@ const SDSettings = ({ sourceId, customProperties }) => { }; const handleLogoChange = (style) => { - if (!useSDLogos) return; setLogoStyle(style); saveSetting('logo_style', style); };