Build the agent-native compute CRM platform
CI / verify (push) Successful in 3m6s

This commit is contained in:
2026-08-13 01:39:01 -07:00
parent bfd2f8d95a
commit 853bde2265
160 changed files with 61812 additions and 483 deletions
+2
View File
@@ -13,6 +13,7 @@ import { getAccent, THEME_MODES, type ThemeMode } from '@pig/core';
import { Badge, Button, Card, CardContent, CardHeader, CardTitle, Input } from '@/components/ui';
import { useState } from 'react';
import { usePageTitle } from '@/lib/title';
import { AdminSettings } from '@/components/AdminSettings';
interface Me {
id: string;
@@ -35,6 +36,7 @@ export function Settings() {
<Appearance />
<Profile me={me} />
{me?.isPlatformAdmin ? <AdminSettings /> : null}
<ConnectAgent />
<SessionCard />
</div>