release v1.4.5

This commit is contained in:
Bohdan Triapitsyn
2026-01-09 00:01:22 +02:00
parent e134f0f14e
commit 2382c6e82a
11 changed files with 32 additions and 23 deletions
@@ -84,12 +84,6 @@ export const McpDropdown: React.FC<McpDropdownProps> = ({ headerIconButtonClass
setTooltipOpen(isOpen);
}, []);
const directoryKey = React.useMemo(() => {
const normalized = typeof directory === 'string' ? directory.replace(/\\/g, '/').replace(/\/+$/, '') : '';
return normalized.length > 0 ? normalized : '__global__';
}, [directory]);
const isLoading = useMcpStore((state) => Boolean(state.loadingKeys[directoryKey]));
const [isSpinning, setIsSpinning] = React.useState(false);
const [busyName, setBusyName] = React.useState<string | null>(null);