diff --git a/src/app/[orgId]/settings/resources/proxy/create/page.tsx b/src/app/[orgId]/settings/resources/proxy/create/page.tsx
index 5f65b8578..a2cf36de6 100644
--- a/src/app/[orgId]/settings/resources/proxy/create/page.tsx
+++ b/src/app/[orgId]/settings/resources/proxy/create/page.tsx
@@ -694,19 +694,6 @@ export default function Page() {
header: () => {t("healthCheck")},
cell: ({ row }) => {
const status = row.original.hcHealth || "unknown";
- const isEnabled = row.original.hcEnabled;
-
- const getStatusColor = (status: string) => {
- switch (status) {
- case "healthy":
- return "green";
- case "unhealthy":
- return "red";
- case "unknown":
- default:
- return "secondary";
- }
- };
const getStatusText = (status: string) => {
switch (status) {
@@ -720,19 +707,7 @@ export default function Page() {
}
};
- const getStatusIcon = (status: string) => {
- switch (status) {
- case "healthy":
- return