diff --git a/src/interface/web/app/components/chatSidebar/chatSidebar.tsx b/src/interface/web/app/components/chatSidebar/chatSidebar.tsx index 4a399c42..c394d8c2 100644 --- a/src/interface/web/app/components/chatSidebar/chatSidebar.tsx +++ b/src/interface/web/app/components/chatSidebar/chatSidebar.tsx @@ -183,7 +183,9 @@ function ChatSidebarInternal({ ...props }: ChatSideBarProps) { function handleModelSelect(model: string) { setSelectedModel(model); - setHasModified(true); + if (model !== agentData?.chat_model) { + setHasModified(true); + } } return (