chore: lint

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

View File

@@ -111,7 +111,7 @@ const ProxyForm: React.FC = () => {
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>