From 372e71a97c54f93b9cfbdf16b91aaf02ea9c5b74 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 2 Oct 2024 20:59:45 +0530 Subject: [PATCH] feat: remove apiKeu from proxyConfig --- src/api/proxy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/proxy.ts b/src/api/proxy.ts index 28957be0..ebe87f95 100644 --- a/src/api/proxy.ts +++ b/src/api/proxy.ts @@ -1,6 +1,6 @@ import { default as axios } from "axios"; -export const sendProxyConfig = async (proxyConfig: { type: string, server: string, username?: string, password?: string, apiKey?: string }): Promise => { +export const sendProxyConfig = async (proxyConfig: { type: string, server: string, username?: string, password?: string }): Promise => { try { const response = await axios.post(`http://localhost:8080/proxy/config`, proxyConfig); if (response.status === 200) {