mirror of https://github.com/kortix-ai/suna.git
fix: remove playbooks tab from chat-input dialog type
- Remove 'playbooks' from agentConfigDialog tab union type - Fixes TypeScript build error after workflow system removal - Build now passes successfully
This commit is contained in:
parent
e7362c9370
commit
ec5ec498b3
|
@ -150,7 +150,7 @@ export const ChatInput = memo(forwardRef<ChatInputHandles, ChatInputProps>(
|
|||
const [showSnackbar, setShowSnackbar] = useState(defaultShowSnackbar);
|
||||
const [userDismissedUsage, setUserDismissedUsage] = useState(false);
|
||||
const [billingModalOpen, setBillingModalOpen] = useState(false);
|
||||
const [agentConfigDialog, setAgentConfigDialog] = useState<{ open: boolean; tab: 'instructions' | 'knowledge' | 'triggers' | 'playbooks' | 'tools' | 'integrations' }>({ open: false, tab: 'instructions' });
|
||||
const [agentConfigDialog, setAgentConfigDialog] = useState<{ open: boolean; tab: 'instructions' | 'knowledge' | 'triggers' | 'tools' | 'integrations' }>({ open: false, tab: 'instructions' });
|
||||
const [mounted, setMounted] = useState(false);
|
||||
|
||||
const {
|
||||
|
|
Loading…
Reference in New Issue