diff --git a/src/common/components/AppBreadcrumbs.tsx b/src/common/components/AppBreadcrumbs.tsx
index a1a53dd2c..bebb2b37f 100644
--- a/src/common/components/AppBreadcrumbs.tsx
+++ b/src/common/components/AppBreadcrumbs.tsx
@@ -11,7 +11,7 @@ const _sx = { p: 0 };
export function AppBreadcrumbs(props: {
size?: 'sm' | 'md' | 'lg';
children?: React.ReactNode;
- rootTitle?: string;
+ rootTitle?: React.ReactNode;
onRootClick?: () => void;
}) {
@@ -26,7 +26,8 @@ export function AppBreadcrumbs(props: {
return } aria-label='breadcrumbs' sx={_sx}>
{(props.children && !!rootTitle && !!onRootClick)
? {props.rootTitle}
- : {props.rootTitle}
+ : (typeof props.rootTitle === 'string') ? {props.rootTitle}
+ : props.rootTitle
}
{props.children}
{/*{nav.pnt === 'create-new' && Create New}*/}
diff --git a/src/modules/llms/models-modal/ModelsModal.tsx b/src/modules/llms/models-modal/ModelsModal.tsx
index 95c59bc54..03df89485 100644
--- a/src/modules/llms/models-modal/ModelsModal.tsx
+++ b/src/modules/llms/models-modal/ModelsModal.tsx
@@ -116,19 +116,20 @@ function ModelsConfiguratorModal(props: {
Setup AI Models
) : (
- <>Configure AI Models>
- //
- //
- // {!hasLLMs ? Setup : <>
- //
- // Setup
- //
- //
- // Defaults
- //
- // >}
- //
- //
+ // <>Configure AI Models>
+
+ AI Models
+ {/**/}
+ {/* {!hasLLMs ? Setup : <>*/}
+ {/* */}
+ {/* Setup*/}
+ {/* */}
+ {/* */}
+ {/* Defaults*/}
+ {/* */}
+ {/* >}*/}
+ {/**/}
+
)}
open onClose={optimaActions().closeModels}
darkBottomClose={!isTabWizard}