From 08902de856a29fefa06c2fba8cedb796cd9d6ff8 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Sat, 18 Jan 2025 16:50:38 +0000 Subject: [PATCH] style: fix naming scheme --- packages/frontend/src/app/configure/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/frontend/src/app/configure/page.tsx b/packages/frontend/src/app/configure/page.tsx index 2c548f0a..3ed74114 100644 --- a/packages/frontend/src/app/configure/page.tsx +++ b/packages/frontend/src/app/configure/page.tsx @@ -171,8 +171,8 @@ export default function Configure() { number | null >(null); const [mediaFlowEnabled, setMediaFlowEnabled] = useState(false); - const [mediaFlowProxyUrl, setmediaFlowProxyUrl] = useState(''); - const [mediaFlowApiPassword, setmediaFlowApiPassword] = useState(''); + const [mediaFlowProxyUrl, setMediaFlowProxyUrl] = useState(''); + const [mediaFlowApiPassword, setMediaFlowApiPassword] = useState(''); const [mediaFlowPublicIp, setMediaFlowPublicIp] = useState(''); const [mediaFlowProxiedAddons, setMediaFlowProxiedAddons] = useState< string[] | null @@ -602,8 +602,8 @@ export default function Configure() { setMediaFlowEnabled( decodedConfig.mediaFlowConfig?.mediaFlowEnabled || false ); - setmediaFlowProxyUrl(decodedConfig.mediaFlowConfig?.proxyUrl || ''); - setmediaFlowApiPassword(decodedConfig.mediaFlowConfig?.apiPassword || ''); + setMediaFlowProxyUrl(decodedConfig.mediaFlowConfig?.proxyUrl || ''); + setMediaFlowApiPassword(decodedConfig.mediaFlowConfig?.apiPassword || ''); } const path = window.location.pathname; @@ -1084,7 +1084,7 @@ export default function Configure() {