chore: lint

This commit is contained in:
karishmas6
2024-10-26 20:32:47 +05:30
parent a0b107d0c3
commit c04db5c5cb

View File

@@ -79,10 +79,10 @@ const ProxyForm: React.FC = () => {
try { try {
const response = await sendProxyConfig(proxyConfigForm); const response = await sendProxyConfig(proxyConfigForm);
if (response) { if (response) {
notify('success', 'Proxy configuration submitted successfully'); notify('success', 'Proxy configuration submitted successfully');
} else { } else {
notify('error', `Failed to submit proxy configuration. Try again. ${response}`); notify('error', `Failed to submit proxy configuration. Try again. ${response}`);
console.log(`Failed to submit proxy configuration. Try again. ${response}`) console.log(`Failed to submit proxy configuration. Try again. ${response}`)
} }
} catch (error: any) { } catch (error: any) {
notify('error', `${error} : Failed to submit proxy configuration`); notify('error', `${error} : Failed to submit proxy configuration`);
@@ -107,11 +107,11 @@ const ProxyForm: React.FC = () => {
try { try {
const response = await getProxyConfig(); const response = await getProxyConfig();
if (response.proxy_url) { if (response.proxy_url) {
setIsProxyConfigured(true); setIsProxyConfigured(true);
setProxy(response); setProxy(response);
notify('success', 'Proxy configuration fetched successfully'); notify('success', 'Proxy configuration fetched successfully');
} }
} catch (error:any) { } catch (error: any) {
notify('error', error); notify('error', error);
} }
}; };
@@ -164,7 +164,7 @@ const ProxyForm: React.FC = () => {
<Button variant="outlined" color="primary" onClick={testProxy}> <Button variant="outlined" color="primary" onClick={testProxy}>
Test Proxy Test Proxy
</Button> </Button>
<Button variant="outlined" color="error" onClick={removeProxy} sx={{ marginLeft: '10px'}}> <Button variant="outlined" color="error" onClick={removeProxy} sx={{ marginLeft: '10px' }}>
Remove Proxy Remove Proxy
</Button> </Button>
</Box> </Box>