Rahul Bhardwaj commited on
Commit
8fb0248
·
unverified ·
2 Parent(s): a4a722b cecbc55

Merge branch 'main' into add-docker-support

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app/components/chat/BaseChat.tsx +1 -1
README.md CHANGED
@@ -45,7 +45,7 @@ Once your free daily token limit is reached, AI interactions are paused until th
45
  Yes, Bolt.new is in beta, and we are actively improving it based on feedback.
46
 
47
  **How can I report Bolt.new issues?**
48
- Check out the [Issues section](https://github.com/bolt.new/issues) to report an issue or request a new feature. Please use the search feature to check if someone else has already submitted the same issue/request.
49
 
50
  **What frameworks/libraries currently work on Bolt?**
51
  Bolt.new supports most popular JavaScript frameworks and libraries. If it runs on StackBlitz, it will run on Bolt.new as well.
 
45
  Yes, Bolt.new is in beta, and we are actively improving it based on feedback.
46
 
47
  **How can I report Bolt.new issues?**
48
+ Check out the [Issues section](https://github.com/stackblitz/bolt.new/issues) to report an issue or request a new feature. Please use the search feature to check if someone else has already submitted the same issue/request.
49
 
50
  **What frameworks/libraries currently work on Bolt?**
51
  Bolt.new supports most popular JavaScript frameworks and libraries. If it runs on StackBlitz, it will run on Bolt.new as well.
app/components/chat/BaseChat.tsx CHANGED
@@ -69,7 +69,7 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
69
  data-chat-visible={showChat}
70
  >
71
  <ClientOnly>{() => <Menu />}</ClientOnly>
72
- <div ref={scrollRef} className="flex overflow-scroll w-full h-full">
73
  <div className={classNames(styles.Chat, 'flex flex-col flex-grow min-w-[var(--chat-min-width)] h-full')}>
74
  {!chatStarted && (
75
  <div id="intro" className="mt-[26vh] max-w-chat mx-auto">
 
69
  data-chat-visible={showChat}
70
  >
71
  <ClientOnly>{() => <Menu />}</ClientOnly>
72
+ <div ref={scrollRef} className="flex overflow-y-auto w-full h-full">
73
  <div className={classNames(styles.Chat, 'flex flex-col flex-grow min-w-[var(--chat-min-width)] h-full')}>
74
  {!chatStarted && (
75
  <div id="intro" className="mt-[26vh] max-w-chat mx-auto">