refactor: remove team memory components and related settings from user and search space settings

This commit is contained in:
Anish Sarkar 2026-05-20 12:01:26 +05:30
parent 659007bc4d
commit 61234e125f
6 changed files with 0 additions and 326 deletions

View file

@ -3,7 +3,6 @@
import {
BookText,
Bot,
Brain,
CircleUser,
Earth,
ImageIcon,
@ -27,7 +26,6 @@ export type SearchSpaceSettingsTab =
| "vision-models"
| "team-roles"
| "prompts"
| "team-memory"
| "public-links";
const DEFAULT_TAB: SearchSpaceSettingsTab = "general";
@ -89,11 +87,6 @@ export function SearchSpaceSettingsLayoutShell({
label: t("nav_system_instructions"),
icon: <BookText className="h-4 w-4" />,
},
{
value: "team-memory" as const,
label: "Team Memory",
icon: <Brain className="h-4 w-4" />,
},
{
value: "public-links" as const,
label: t("nav_public_links"),

View file

@ -1,6 +0,0 @@
import { TeamMemoryManager } from "@/components/settings/team-memory-manager";
export default async function Page({ params }: { params: Promise<{ search_space_id: string }> }) {
const { search_space_id } = await params;
return <TeamMemoryManager searchSpaceId={Number(search_space_id)} />;
}