diff --git a/app/components/chat.tsx b/app/components/chat.tsx index 5dd276c0dad..70fd462d9fd 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -265,7 +265,7 @@ function ClearContextDivider() { className={chatStyle["clear-context"]} onClick={() => chatStore.updateCurrentSession( - (session) => (session.clearContextIndex = -1), + (session) => (session.clearContextIndex = undefined), ) } > @@ -388,7 +388,7 @@ export function ChatActions(props: { onClick={() => { chatStore.updateCurrentSession((session) => { if (session.clearContextIndex === session.messages.length) { - session.clearContextIndex = -1; + session.clearContextIndex = undefined; } else { session.clearContextIndex = session.messages.length; session.memoryPrompt = ""; // will clear memory