main #126

Merged
Patrick_Pluto merged 4 commits from sageTheDm/interstellar_ai:main into main 2024-10-09 13:58:36 +02:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 5f77c96b79 - Show all commits

View file

@ -22,7 +22,7 @@ const ConversationFrontend = React.forwardRef<HTMLDivElement, ConversationProps>
({ messages, onStopClick, onResendClick, onEditClick, onCopyClick, isClicked }, ref: ForwardedRef<HTMLDivElement>) => {
const [isScrolling, setIsScrolling] = useState(true);
const messagesEndRef = useRef<HTMLDivElement | null>(null);
const [chatHistory, setChatHistory, setSelectedIndex] = useChatHistory()
const [chatHistory] = useChatHistory()
useEffect(() => {
const observer = new IntersectionObserver(

View file

@ -8,6 +8,10 @@ const History: React.FC = () => {
const handleEditButtonClick = () => {
setIsEditing(true);
/* Thank you Eslint for this masterpiece of a code snippet */
setChatHistory(chatHistory)
/* Wow i feel so secure now */
};
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {