diff --git a/web/src/components/entry.tsx b/web/src/components/entry.tsx index d9316b6..10e8eb3 100644 --- a/web/src/components/entry.tsx +++ b/web/src/components/entry.tsx @@ -9,14 +9,12 @@ import { ShowAssistantEntry } from "./assistant"; import { GlossarySpan } from "./glossary"; import Image from "next/image"; import logo from "../logo.svg"; +import TextareaAutosize from 'react-textarea-autosize'; export const User = ({ entry }: { entry: UserEntry }) => { return ( -
  • -

    - {" "} - {entry.content}{" "} -

    +
  • +
  • ); }; diff --git a/web/src/pages/index.tsx b/web/src/pages/index.tsx index 0a8c79b..8e01623 100644 --- a/web/src/pages/index.tsx +++ b/web/src/pages/index.tsx @@ -121,7 +121,7 @@ const Home: NextPage = () => { case "followups": last_entry = <> -

    Loading: Checking for followups...

    +

    Checking for followups...

    ; break; }