feat: remove mediaflow public ip option

This commit is contained in:
Viren070
2025-01-10 21:01:14 +00:00
parent e06964039a
commit 9042af4c8f
2 changed files with 0 additions and 17 deletions
@@ -233,8 +233,6 @@ export default function Configure() {
const [mediaFlowEnabled, setMediaFlowEnabled] = useState<boolean>(false);
const [mediaFlowProxyUrl, setmediaFlowProxyUrl] = useState<string>('');
const [mediaFlowApiPassword, setmediaFlowApiPassword] = useState<string>('');
const [mediaFlowPublicIp, setmediaFlowPublicIp] = useState<string>('');
const [disableButtons, setDisableButtons] = useState<boolean>(false);
const getChoosableAddons = () => {
@@ -282,7 +280,6 @@ export default function Configure() {
mediaFlowEnabled,
proxyUrl: mediaFlowProxyUrl,
apiPassword: mediaFlowApiPassword,
publicIp: mediaFlowPublicIp,
},
addons,
services,
@@ -1070,19 +1067,6 @@ export default function Configure() {
Leave empty if MediaFlow is configured locally without a proxy server or if it&apos;s hosted on a remote server.
</p>
</div>
<div>
<input
type="text"
value={mediaFlowPublicIp}
onChange={(e) => setmediaFlowPublicIp(e.target.value)}
placeholder='Enter your public IP'
disabled={!mediaFlowEnabled}
style={{
marginLeft: 'auto',
marginRight: '20px',
}}
/>
</div>
</div>
</div>
)}
-1
View File
@@ -149,7 +149,6 @@ export interface Config {
mediaFlowEnabled: boolean;
proxyUrl: string;
apiPassword: string;
publicIp: string;
};
addons: {
id: string;