From 4e031e746b7f62659c00da9d28e5cedffcfc6819 Mon Sep 17 00:00:00 2001 From: Brent O'Neill Date: Mon, 6 Oct 2025 16:07:24 -0600 Subject: [PATCH] fix the things --- frontend/src/app/settings/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/settings/page.tsx b/frontend/src/app/settings/page.tsx index 5200873e..cc83573a 100644 --- a/frontend/src/app/settings/page.tsx +++ b/frontend/src/app/settings/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ArrowUpRight, Loader2, Minus, Plus } from "lucide-react"; +import { ArrowUpRight, Loader2, Minus, PlugZap, Plus } from "lucide-react"; import Link from "next/link"; import { useRouter, useSearchParams } from "next/navigation"; import { Suspense, useCallback, useEffect, useState } from "react"; @@ -53,6 +53,7 @@ import { ModelSelectItems } from "./helpers/model-select-item"; import GoogleDriveIcon from "./icons/google-drive-icon"; import OneDriveIcon from "./icons/one-drive-icon"; import SharePointIcon from "./icons/share-point-icon"; +import { availableMemory } from "process"; const { MAX_SYSTEM_PROMPT_CHARS } = UI_CONSTANTS; @@ -310,6 +311,7 @@ function KnowledgeSourcesPage() { icon: getConnectorIcon(connectorsResult.connectors[type].icon), status: "not_connected" as const, type: type, + available: connectorsResult.connectors[type].available, })); setConnectors(initialConnectors);